4bbed72f6e
--------------------------------- ## Version 1.2.4 2016-05-01 * Fix finding the extension on ruby 2.1.10 (thanks @wpiekutowski) * Add more readable load error (thanks @mbautin) * Update README with what versions of ruby are supported.
14 lines
499 B
Text
14 lines
499 B
Text
Hitimes is a fast, high resolution timer library for recording
|
|
performance metrics. It uses the appropriate low method calls for each
|
|
system to get the highest granularity time increments possible.
|
|
|
|
It currently supports any of the following systems:
|
|
|
|
* any system with the POSIX call `clock_gettime()`
|
|
* Mac OS X
|
|
* Windows
|
|
* JRuby
|
|
|
|
Using Hitimes can be faster than using a series of `Time.new` calls, and
|
|
it will have a much higher granularity. It is definitely faster than
|
|
using `Process.times`.
|