Do you know any resource, describing how php works (like the thing about compiling opcode, and stuff)? How does php handle simultaneous requests? Are there multiple threads spawned?
PHP doesn't do threading, apache does however every request it receives spawns a new thread ( there is however a thread limit in apache if Im not mistaken), but a single php cant unless you simulate it with arrays and loops.
clive -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php