Hello All:
I am attempting to do a loadtest on a process which is "suspect"...
Does the following code generate multiple instances....????
for ($i=0; $i <= $iteration; $i++)
{
printf(" Executing Iteration:==> %d\n", $iteration);
system ("master_menu &");
}
As you can see, I run the execution in background. And when I execute the UNIX ps command, it gives me the number of iterations I gave the for-loop to execute.
Now, my Lead says the PERL loop is bogging down the system. I think otherwise.....
Please Help!