Ruby Long Running Benchmarks


Benchmark Types
Show the last
Results
Compare

Vm symbol block pass Graph (Iteration per second)

Vm symbol block pass Graph (RSS memory usage)

Vm symbol block pass Script View on Github

class C
  1000.times {|i|
    eval("def i#{i};end")
  }
end

c = C.new
m = C.instance_methods(false)
5_000.times do
  m.each do |n|
    c.tap(&n)
  end
end