I just had a look at the docs on sleep()
.
Where would you use this function?
Is it there to give the CPU a break in an expensive function?
Any common pitfalls?
The sleep() function in PHP is an inbuilt function which is used to delay the execution of the current script for a specified number of seconds. The sleep( ) function accepts seconds as a parameter and returns TRUE on success or FALSE on failure.
The sleep subroutine suspends the current process for whole seconds. The usleep subroutine suspends the current process in microseconds, and the nsleep subroutine suspends the current process in nanoseconds.
In order to delay program execution for a fraction of a second, use usleep() as the sleep() function expects an int. For example, sleep(0.25) will pause program execution for 0 seconds.
Sleep() With the help of Sleep() we can make a function to pause execution for a fixed amount of time. In programming languages such as C and Php we would call sleep(sec).
One place where it finds use is to create a delay.
Lets say you've built a crawler that uses curl
/file_get_contents
to get remote pages. Now you don't want to bombard the remote server with too many requests in short time. So you introduce a delay between consecutive requests.
sleep
takes the argument in seconds, its friend usleep
takes arguments in microseconds and is more suitable in some cases.
Another example: You're running some sort of batch process that makes heavy use of a resource. Maybe you're walking the database of 9,000,000 book titles and updating about 10% of them. That process has to run in the middle of the day, but there are so many updates to be done that running your batch program drags the database server down to a crawl for other users.
So you modify the batch process to submit, say, 1000 updates, then sleep
for 5 seconds to give the database server a chance to finish processing any requests from other users that have backed up.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With