123456789_123456789_123456789_123456789_123456789_

Class: Benchmark

Relationships & Source Files
Inherits: Object
Defined in: activesupport/lib/active_support/core_ext/benchmark.rb

Class Method Summary

  • .ms

    Benchmark realtime in milliseconds.

Class Method Details

.ms

Benchmark realtime in milliseconds.

Benchmark.realtime { User.all }
# => 8.0e-05

Benchmark.ms { User.all }
# => 0.074
[ GitHub ]

  
# File 'activesupport/lib/active_support/core_ext/benchmark.rb', line 11

def ms
  1000 * realtime { yield }
end