Ruby 方法的测量和基准时间

问题描述 投票:0回答:6

如何在 Ruby 中测量方法以及该方法中的各个语句所花费的时间。如果您看到下面的方法,我想测量该方法所花费的总时间以及数据库访问和 Redis 访问所花费的时间。我不想在每个语句之前都写 Benchmark.measure 。 ruby 解释器是否为我们提供了执行此操作的任何钩子?

def foo
# code to access database
# code to access redis. 
end
ruby-on-rails ruby time benchmarking interpreter
6个回答
153
投票

最简单的方法:

require 'benchmark'

def foo
 time = Benchmark.measure do
  code to test
 end
 puts time.real #or save it to logs
end

输出示例:

2.2.3 :001 > foo
  5.230000   0.020000   5.250000 (  5.274806)

值包括:CPU 时间、系统时间、总运行时间和实际运行时间。

来源:ruby 文档


137
投票

您可以使用

Time
对象。 (时间文档)

例如,

start = Time.now
# => 2022-02-07 13:55:06.82975 +0100
# code to time
finish = Time.now
# => 2022-02-07 13:55:09.163182 +0100
diff = finish - start
# => 2.333432

diff
以秒为单位,为浮点数。


60
投票

使用
Benchmark
的报告

require 'benchmark' # Might be necessary.

def foo
  Benchmark.bm( 20 ) do |bm|  # The 20 is the width of the first column in the output.
    bm.report( "Access Database:" ) do 
      # Code to access database.
    end
   
    bm.report( "Access Redis:" ) do
      # Code to access redis.
    end
  end
end

这将输出类似以下内容:

                        user     system      total        real
Access Database:    0.020000   0.000000   0.020000 (  0.475375)
Access Redis:       0.000000   0.000000   0.000000 (  0.000037)

<------ 20 -------> # This is where the 20 comes in. NOTE: This is not shown in output.

更多信息可以在这里找到。


34
投票

许多答案建议使用

Time.now
。但值得注意的是,
Time.now
是可以改变的。系统时钟可能会发生漂移,并且可能会由系统管理员或通过 NTP 进行纠正。因此,Time.now 可能会向前或向后跳跃并给出不准确的基准测试结果。

更好的解决方案是使用操作系统的单调时钟,它总是向前移动。 Ruby 2.1 及更高版本可以通过以下方式访问此内容:

start = Process.clock_gettime(Process::CLOCK_MONOTONIC)
# code to time
finish = Process.clock_gettime(Process::CLOCK_MONOTONIC)
diff = finish - start # gets time is seconds as a float

您可以在此处阅读更多详细信息。您还可以看到流行的 Ruby 项目 Sidekiq 已切换到单调时钟


10
投票

第二个想法,使用 Ruby 代码块参数定义 measure() 函数可以帮助简化时间测量代码:

def measure(&block)
  start = Time.now
  block.call
  Time.now - start
end

# t1 and t2 is the executing time for the code blocks.
t1 = measure { sleep(1) }

t2 = measure do
  sleep(2)
end

2
投票

本着wquist的回答的精神,但更简单一点,你也可以像下面这样做:

start = Time.now
# code to time
Time.now - start
© www.soinside.com 2019 - 2024. All rights reserved.