Created
February 6, 2014 02:05
-
-
Save mzemel/8837181 to your computer and use it in GitHub Desktop.
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
10.times do | |
@rate ||= 0.0 | |
start_time = Time.now.to_i | |
start_count = Property.external.count.to_f | |
sleep rand(30..60) | |
end_time = Time.now.to_i | |
end_count = Property.external.count.to_f | |
properties_per_second = ((end_count - start_count) / (end_time - start_time) ) | |
@rate += properties_per_second | |
end | |
puts "Average: #{@rate / 10} properties per second" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment