Ruby Long Running Benchmarks


Benchmark Types
Show the last
Results
Compare

Vm thread create join Graph (Iteration per second)

Vm thread create join Graph (RSS memory usage)

Vm thread create join Script View on Github

i = 0
while i<100_000 # benchmark loop 3
  i += 1
  Thread.new{
  }.join
end