Hi Daan, Just a note on performance. I'm running a WSGI 3 application with a page which includes dynamic HTML generation and a couple PostgreSQL queries per request, etc...
With 1 process and 5 threads, the server hosting it will sustain 800-1000 requests per second, using: ab -n 10000 -c 30 http:// <site-running-on-localhost>/path/to/page Keep in mind that latency could affect those numbers significantly in the real world, but still, you can handle a LOT of traffic with few processes/threads if your application is well written. Sincerely, Jason Garber On Tue, Nov 17, 2009 at 11:09 AM, Daan Davidsz <[email protected]>wrote: > Thank you very much, this seems like the configuration I was looking > for. I've tweaked it a bit and e-mailed it to the administrators. > > Daan > > -- > > You received this message because you are subscribed to the Google Groups > "modwsgi" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]<modwsgi%[email protected]> > . > For more options, visit this group at > http://groups.google.com/group/modwsgi?hl=. > > > -- You received this message because you are subscribed to the Google Groups "modwsgi" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/modwsgi?hl=.
