Methods
Class Public methods
ms()
Benchmark
realtime in milliseconds.
Benchmark.realtime { User.all }
# => 8.0e-05
Benchmark.ms { User.all }
# => 0.074
📝 Source code
# File activesupport/lib/active_support/core_ext/benchmark.rb, line 13
def ms
1000 * realtime { yield }
end
🔎 See on GitHub