Created
January 23, 2017 22:38
-
-
Save yefim/62cf452497dd18a87cab69a0f93857d1 to your computer and use it in GitHub Desktop.
Benchmark built in Mongoid hooks against just calling functions normally.
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
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 |
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
class HookUser | |
include Mongoid::Document | |
field :name, type: String, default: '' | |
before_save do | |
self.name = srand.to_s | |
end | |
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
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