Skip to content

Instantly share code, notes, and snippets.

@yefim
Created January 23, 2017 22:38
Show Gist options
  • Save yefim/62cf452497dd18a87cab69a0f93857d1 to your computer and use it in GitHub Desktop.
Save yefim/62cf452497dd18a87cab69a0f93857d1 to your computer and use it in GitHub Desktop.
Benchmark built in Mongoid hooks against just calling functions normally.
irb> def benchmark
irb> s = Time.zone.now
irb> 50000.times { yield }
irb> e = Time.zone.now
irb> e - s
irb> end
=> :benchmark
irb> benchmark do
irb> u = RollingUser.new
irb> u.save
irb> end
=> 32.557828
irb> benchmark do
irb> u = HookUser.new
irb> u.save
irb> end
=> 49.877796
class HookUser
include Mongoid::Document
field :name, type: String, default: ''
before_save do
self.name = srand.to_s
end
end
class RollingUser
include Mongoid::Document
field :name, type: String, default: ''
def save
self.name = srand.to_s
super
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment