I'm curious...
Suppose I use sleep(60) to delay execution of a script for a whole minute. Does this mean every Apache thread is delayed for this amount of time?
Or, how about this: suppose I have a line like sleep(1) in a script that is widely called (say in the hundreds of times per minute).
I guess the question really is how PHP and Apache handle multiple simultaneous scripts. If one script is sleeping, do the other ones also have to wait up?
-j