Created
January 20, 2014 19:57
-
-
Save ph3nx/8527843 to your computer and use it in GitHub Desktop.
Simple Ruby benchmark to benchmark strings and symbols.
This file contains hidden or 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' | |
string_AZ = Hash[("a".."z").to_a.zip((1..26).to_a)] | |
symbol_AZ = Hash[(:a..:z).to_a.zip((1..26).to_a)] | |
string_time = Benchmark.realtime do | |
100_000.times { string_AZ["r"] } | |
end | |
symbol_time = Benchmark.realtime do | |
100_000.times { symbol_AZ[:r] } | |
end | |
puts "String time: #{string_time} seconds." | |
puts "Symbol time: #{symbol_time} seconds." |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment