Re: benchmarking with threading module

2005-06-28 Thread Peter Hansen
Matteo Memelli wrote: > Hi, I'd like to know if it is possible to use the threading module to > benchmark a web server. > Do you think that using the Threading module would be a good idea? > Any other suggestion? This sounds like a good time to use Twisted instead of "threading". -Peter -- http:

benchmarking with threading module

2005-06-28 Thread Matteo Memelli
Hi, I'd like to know if it is possible to use the threading module to benchmark a web server. I'd like to write a python script which connect to a web server asking for a page (like a php page querying a mysql db). The script should launch many different queries to the web page at the same time. Th