Hello Folks,

My objective is to stress test a load balanced web server. I wrote a simple script using lwp::simple. The script in its current form is fetching the page. However, since it is initiating the connections seqentially I am actually not stressing the gateway. Could somebody point me in the right direction on how to go about spawning multiple instances. Code snippets would be really really appreciated.

Thanks a lot The current version is pasted below:
use LWP::Simple; use strict; my ($count, $max, $URL); unless (defined ($URL = shift)) { print "\n\nEnter the site address which you would like to access: +"; chomp($URL = <STDIN>); } $URL = "http://" . "$URL"; print "Site address is $URL \n"; unless (defined ($max = shift)) { print "Enter the number of times to hit the site: "; chomp($max = <STDIN>); } for ($count = 0; $count <= $max; $count++){ my $content; unless (defined ($content = get $URL)) { die "could not get $URL\n"; } if ($content =~ /Test1</font>/i) { print "."; } elsif ($content =~ /Test2</font>/i) { print "Fetched page from Server2 \n"; $count++; &result; } else { print "Page not retreived \n" } } sub result { print "page retrieved after $count tries \n"; exit; }

Edited by Chady -- replaced <pre> tags with <code> tags


In reply to parallel web get with lwp::simple by barathbr

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.