我已将其转换为使用 STDLIBbenchmark
并得到了这个结果
require 'benchmark'
iterations = 10 ** 7
$global = 0
local = 0
@instance = 0
Benchmark.bmbm(8) do |x|
x.report('global') {iterations.times { $global } }
x.report('local') {iterations.times { local } }
x.report('instance') {iterations.times { @instance } }
end
结果:
Rehearsal --------------------------------------------
global 1.580000 0.010000 1.590000 ( 1.600952)
local 1.540000 0.000000 1.540000 ( 1.555683)
instance 1.600000 0.000000 1.600000 ( 1.642781)
----------------------------------- total: 4.730000sec
user system total real
global 1.560000 0.000000 1.560000 ( 1.575711)
local 1.540000 0.000000 1.540000 ( 1.547040)
instance 1.600000 0.010000 1.610000 ( 1.618772)
使用benchmark-ips
宝石:
require 'benchmark/ips'
$global = 0
local = 0
@instance = 0
Benchmark.ips do |x|
x.report('global') { $global }
x.report('local') { local }
x.report('instance') { @instance }
x.compare!
end
此时在我的机器上给出以下报告,也许给出更容易阅读的比较:
Calculating -------------------------------------
global 34.310k i/100ms
local 34.461k i/100ms
instance 34.383k i/100ms
-------------------------------------------------
global 3.154M (± 2.9%) i/s - 15.748M
local 3.205M (± 4.5%) i/s - 15.990M
instance 3.153M (± 3.1%) i/s - 15.747M
Comparison:
local: 3205049.9 i/s
global: 3153595.5 i/s - 1.02x slower
instance: 3152813.3 i/s - 1.02x slower
您只比较了局部变量和全局变量,但忽略了实例变量。
任何一个都可以忽略不计,这实际上是一件好事。
我不确定这是否能回答您的问题,但希望对您有所帮助。