How do I sleep for shorter than a second in Perl?
|
1
|
|||||
|
|
|
From the Perldoc page on sleep:
Actually, it provides
If you don't want to (or can't) load a module to do this, you may also be able to use the built-in
|
||||||||
|
|
|
Time::HiRes:
|
||||||||
|
|
|
Use Time::HiRes. |
||
|
|
|
|
A quick googling on "perl high resolution timers" gave a reference to Time::HiRes. Maybe that it what you want. |
||
|
|
|
|
From perlfaq8: How can I sleep() or alarm() for under a second? If you want finer granularity than the 1 second that the sleep() function provides, the easiest way is to use the select() function as documented in select in perlfunc. Try the Time::HiRes and the BSD::Itimer modules (available from CPAN, and starting from Perl 5.8 Time::HiRes is part of the standard distribution). |
||
|
|
