Last active
August 29, 2015 14:15
-
-
Save jojo89/563193cc05b2cc097166 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
#fast 50000 | |
puts Benchmark.measure { PinterestPinByUserI.find("I have fifty thousand records").categories.map{|x| x} } | |
#slow 50000 | |
puts Benchmark.measure { PinterestPinByUserH.where(user_pinterest_identifier: "there are 50000 of me").map{|x| x} } | |
#fast 50 records | |
puts Benchmark.measure { PinterestPinByUserI.find("I have fifty records").categories.map{|x| x} } | |
#slow 50 records | |
puts Benchmark.measure { PinterestPinByUserH.where(user_pinterest_identifier: "there are 50 of me").map{|x| x} } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment