We wanted to do something similar (but different). We wanted to stress test a dynamic site and see how many transactions per second per core we could achieve. These tests were for Linux/Unix only, so I'm not sure how to do this with Windows.

We were able to saturate a 100Mb ethernet interface with "use HTTP:Lite;", but this didn't stress our target system. We then used a perl loop to call 'system "wget . . . /&";' with the urls, and we were able to saturate a 1,000Mb ethernet interface and also stress test the application. All that this does is allow each "wget" to run in it's own address space and to be dispatched by the operating system independent of perl (fork may solve your requirements also). We used 16 urls and called them 1,000 times from the perl script. In our case the url was the same, and the parameters send to the application were different, but the results allowed us to stress test the application.

I don't think your problem is perl, but more that "wget" or "Siege" was optimized to get the url data using all the "bells and whistles" of the operating system.

Good Luck.

"Well done is better than well said." - Benjamin Franklin


In reply to Re^2: highest performance http load test architecture in perl? by flexvault
in thread highest performance http load test architecture in perl? by checker

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.