Skip to content

Instantly share code, notes, and snippets.

@jojo89
Last active August 29, 2015 14:15
Show Gist options
  • Save jojo89/563193cc05b2cc097166 to your computer and use it in GitHub Desktop.
Save jojo89/563193cc05b2cc097166 to your computer and use it in GitHub Desktop.
#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