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?
Cheers.
|
|
|
One place where it finds use is to create a delay. Lets say you've built a crawler that uses
|
|||
|
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 |
|||
|
|
|
Here's a snippet of how I use
In this case Edit: this is an example of what codaddict is saying. |
|||
|
|
|
You can use sleep to pause the script execution... for example to delay an AJAX call by server side or implement an observer. You can also use it to simulate delays. I use that also to delay sendmail() & co. . Somebody uses use sleep() to prevent DoS and login brutefoces, I do not agree 'cause in this you need to add some checks to prevent the user from running multiple times. Check also usleep. |
|||
|
|
|
I wouldn't typically use it for serving web pages, but it's useful for command line scripts.
|
|||
|
|
|
I had to use it recently when I was utilising Google's Geolocation API. Every address in a loop needed to call Google's server so it needed a bit of time to receive a response. I used |
|||
|
|