|
Hello,
Apache2 for Win32 comes with a utility for that.
Taking for granted that it's installed on C:\Apache2, you can call it like
this:
C:\> cd C:\Apache2\bin
C:\Apache2\bin> ab -n 5 -c 5 http://127.0.0.1/loginScript.pl
That makes 5 concurrent requests for the specified
url. I think this utility was created to compare mod_perl 1 against mod_perl 2
in Win32, since the first one didn't really have the ability to manage multiple
requests at the same time.
Just write a special script that executes in
one big chain all the heavy tasks you want to test in a concurrent scenario
and call it with that program. Also, you can make the script with some logging
of the results, so you can check times for every part of it and know where to
check if somethings wrong.
I hope this helps. ;-)
Paco Zarabozo
|
_______________________________________________ ActivePerl mailing list [email protected] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs
