Created
August 31, 2012 13:45
-
-
Save jonleighton/3552829 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'benchmark/ips' | |
h = { foo: :bar } | |
Benchmark.ips do |r| | |
r.report('#[]') { h[:foo] } | |
r.report('#fetch') { h.fetch(:foo) } | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Calculating ------------------------------------- | |
#[] 84463 i/100ms | |
#fetch 58818 i/100ms | |
------------------------------------------------- | |
#[] 3004469.2 (±1.6%) i/s - 15034414 in 5.005338s | |
#fetch 2196062.9 (±0.8%) i/s - 10998966 in 5.008783s |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
does not look like significanly slower anymore