in reply to Performance testing using Parallel::ForkManager?

If this is a web application, then yes, Parallel::ForkManager may be useful for testing. As alternative have a look on AnyEvent and particularly on AnyEvent::HTTP, we're using it for load testing of our product, it allows us to simulate several thousands of simultaneous sessions.

  • Comment on Re: Performance testing using Parallel::ForkManager?

Replies are listed 'Best First'.
Re^2: Performance testing using Parallel::ForkManager?
by Anonymous Monk on Apr 24, 2010 at 16:03 UTC
    Actually, this is not about web application testing. It is about client-server application which runs as windows application. Can i still use the AnyEvent::HTTP as internally the request to the server is made using the http requests?

      If you're using HTTP to access server then generally yes you can use AnyEvent::HTTP.