|
Posted by Mario Lopez on 05/11/05 10:26
Hi,
I would like to measure how much users per minute
can handle my php script, mysql db and apache server
also, would like to determine how much users can be
served at the same time and how script execution time
changes in this case
if i run a script like:
$id = rand(1,70);
$file = http://mydomain/gallery.php?galpage=$id;
if (!($fp = @fopen ($file, "r"))){
return "";
}
$intext="";
while(!feof($fp)){
$intext .= fgetc($fp);
}
@fclose($fp);
it does not execute the script paralelly and gives apache
any ideas how can i simulate paralel script execution?
Thanks
Navigation:
[Reply to this message]
|