Skip to content

Instantly share code, notes, and snippets.

@olly
Created September 11, 2013 16:06
Show Gist options
  • Save olly/6525810 to your computer and use it in GitHub Desktop.
Save olly/6525810 to your computer and use it in GitHub Desktop.
require 'benchmark'
MAX = 1000
RANGE = (0..MAX).to_a
array = []
hash = {}
RANGE.each do |i|
array[i] = i
hash[i] = i
end
TIMES = 10_000_000
Benchmark.bm do |x|
x.report { TIMES.times { key = RANGE.sample; array[key] } }
x.report { TIMES.times { key = RANGE.sample; hash[key] } }
end
user system total real
1.050000 0.000000 1.050000 ( 1.049729)
1.470000 0.000000 1.470000 ( 1.465718)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment