Forum Moderators: coopster
Well, if I have a PHP script which runs for about 10 seconds on the server before returning the page to the client. How many concurrent processes can I have?!
// Code
for($i=0;i<10;i++) {
//Do something... few sql queries
sleep(1);
}
// End of code
Do I need a very powerful server to handle like 100 to 500 clients requesting the page in the same time?!
what are the factors?
thank you