in reply to Can your site handle this?

FTR, one should prefer ab for this sort of testing; or perhaps LWP::Parallel/LWP::ParallelUA and friends, or threads/Coro/AE if the responses need to be handled in some deeper way in the testing.

Replies are listed 'Best First'.
Re^2: Can your site handle this?
by Anonymous Monk on Nov 05, 2011 at 16:31 UTC
    Do you have an example bit of code I can look at?

      ab is a command line tool. I think this approximates the Perl in the OP–

      ab -c 128 -n 128000 http://127.0.0.1:5000/
        Nice, thanks :)