Re: Tool to create multiple requests
gAzZaLi <[email protected]>
| Newsgroups | gmane.comp.apache.mod-perl |
|---|---|
| Message-ID | <[email protected]> |
It's rudimentary but you can try Apache ab, the Apache benchmarking tool. You probably have it installed already. Try 'man ab' at the prompt. If you want to emulate 50 concurrent requests, sent twice, you'd do something like: ab -c 50 -n 100 http://example.com/etc?etc If you don't have it installed already, then see http://httpd.apache.org/docs/2.2/programs/ab.html If that doesn't provide any clues, check http://modperlbook.org/html/Chapter-9-Essential-Tools-for-Performance-Tuning.html Good luck. g. On 2/6/2012 11:05 PM, Tobias Wagener wrote: > Hello, > > I'm currently developing a huge application with mod_perl, unixODBC and MaxDB/SAPDB. > On my developing system everything is fine. But on the productive system > with> 50 users, I have database connection errors and request aborts and > so on. > > Now I want to ask if someone knows a tool or perl modules, where I can simulate > 50 users. I have a list with some common request including the query parameter > in order of appearence. But I don't know, how to send them to my developing > system to create the same load as it will be on the productive system. > > Can someone help me with this issue? > > Thanks and best regards, > > Tobias > > >