Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:

Hi, i am using perl from last one year and looking for some help in this forum. I have a webapplication on which i have to perform stress load and performance testing. So i did a little investigation and was able to use LWP::UserAgent, HTTP::Request::Common qw(POST and HTTP::Cookies modules to talk to my webserver and get all the information. I want to know, is it possible to create multiple threads which simultaneously post's requests to the webserver. Is it better to use open source tools ? The requirement is 1. 1 user request. The response time should not exceed 1 minute. 2. 50 user requesting. The response time should not exceed 1 minute. Also all the 50 responses should have the same content. 3. 100 user and so on. I am not able to judge if using perl will I be able to complete the above requirements. Also if i use threads will all the threads requests the webserver at the same timeline.

Replies are listed 'Best First'.
Re: Automating Webapplication
by derby (Abbot) on Feb 20, 2008 at 13:04 UTC
Re: Automating Webapplication
by Anonymous Monk on Feb 20, 2008 at 11:40 UTC
Re: Automating Webapplication
by peterdragon (Beadle) on Feb 20, 2008 at 14:35 UTC