vote up 7 vote down star
1

How do I sleep for shorter than a second in Perl?

flag
Why are you insisting on rolling back the title of your question from the more helpful revision provided by brian d foy? – Callum Jul 7 at 15:19
It is because I believe this title is actually more helpful. Let me try to argument this. What B.D.F. did was duplicate the question in the title which adds no expressivity. When I was searching the web for the answer I actually looked for a millisecond sleep and not for a "shorter than a second" sleep. I say this version has a better chance of being hit through different google searches than B.D.F's one. Please correct me if I'm wrong. – ˈoʊ sɪks Jul 20 at 13:52

5 Answers

vote up 23 vote down check

From the Perldoc page on sleep:

For delays of finer granularity than one second, the Time::HiRes module (from CPAN, and starting from Perl 5.8 part of the standard distribution) provides usleep().

Actually, it provides usleep() (which sleeps in microseconds) and nanosleep() (which sleeps in nanoseconds). You may want usleep(), which should let you deal with easier numbers. 1 millisecond sleep (using each):

use strict;
use warnings;

use Time::HiRes qw(usleep nanosleep);

# 1 millisecond == 1000 microseconds
usleep(1000);
# 1 microsecond == 1000 nanoseconds
nanosleep(1000000);

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 select() function:

# Sleep for 250 milliseconds
select(undef, undef, undef, 0.25);
link|flag
1  
Caveat: although you could nanosleep(1), many OSes have some minimum granularity; e.g. I believe it's 1 ms in Windows XP, so you'd still sleep for a whole 1000000 ns there. – Piskvor May 22 at 8:56
6  
The page on Time::HiRes says something like "if you need nanosleep(), you should reconsider whether or not Perl is the best tool for your job." – Chris Lutz May 22 at 9:00
vote up 13 vote down

Time::HiRes:

  use Time::HiRes;
  Time::HiRes::sleep(0.1); #.1 seconds
  Time::HiRes::usleep(1); # 1 microsecond.

http://perldoc.perl.org/Time/HiRes.html

link|flag
a lousy 34 seconds :) – TML May 22 at 8:44
1  
usleep() sleeps for microseconds, not milliseconds. – Chris Lutz May 22 at 8:59
oops. ta. fixed. – Greg May 22 at 9:11
vote up 5 vote down

Use Time::HiRes.

link|flag
vote up 3 vote down

A quick googling on "perl high resolution timers" gave a reference to Time::HiRes. Maybe that it what you want.

link|flag
vote up 8 vote down

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).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.