Skip to content

Instantly share code, notes, and snippets.

@lukaszkorecki
Created September 24, 2014 08:53
Show Gist options
  • Save lukaszkorecki/122ecb1456081c4211c1 to your computer and use it in GitHub Desktop.
Save lukaszkorecki/122ecb1456081c4211c1 to your computer and use it in GitHub Desktop.
user system total real
0.130000 0.000000 0.130000 ( 0.136423)
0.160000 0.000000 0.160000 ( 0.165723)
0.220000 0.000000 0.220000 ( 0.233087)
require 'benchmark'
i = 1_000_000
d = {}
Benchmark.bm do |r|
r.report do
i.times do
_ = d[:a] || "lol"
end
end
r.report do
i.times do
_ = d.fetch(:a,"lol")
end
end
r.report do
i.times do
_ = d.fetch(:a) { "lol" }
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment