> -Original Message-
> From: Ram Prasad [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, October 09, 2007 9:00 AM
> To: beginners@perl.org
> Subject: Re: Load Test a web site
>
> On Oct 9, 12:54 pm, [EMAIL PROTECTED] (Jim Coyle) wrote:
> > Hi,
> >
> > I a
On Oct 9, 12:54 pm, [EMAIL PROTECTED] (Jim Coyle) wrote:
> Hi,
>
> I am an beginner using Perl.
> I need to load test a new web site - does anyone have some very basic
> code that I could re-use?
> Ideally I'm looking for something that simulates multiple users hitting
> the web site at the same ti
Why not use apache's ab?
But once I did write a simple script for testing our web
applications,hope it's a little help to you.
#!/usr/bin/perl
use strict;
use LWP::UserAgent;
use Encode;
for (1..100) {
unless (fork) {
test_site_com() for 1..10;
exit 0;
}
}
sub test_site_c
Hi,
I am an beginner using Perl.
I need to load test a new web site - does anyone have some very basic
code that I could re-use?
Ideally I'm looking for something that simulates multiple users hitting
the web site at the same time.
Yours gratefully ...
- Jim