Best (or appropriate) WSGI server for this Python script? - Python

Posted by RadiantHex on Stack Overflow See other posts from Stack Overflow or by RadiantHex
Published on 2010-04-22T15:31:31Z Indexed on 2010/04/22 15:33 UTC
Read the original article Hit count: 178

Filed under:
|
|
|
|

Hi folks,

I'm having quite a problem deciding how to serve a few Python scripts.

The problem is that the basic functionality could be generalized by this:

do_something()
time.sleep(3)
do_something()

I tried various WSGI servers, but they have all been giving me concurrency limitations, as in I have to specify how many threads to use and so on.

I only wish that the resources on the server be used efficiently and liberally.


Any ideas?

© Stack Overflow or respective owner

Related posts about python

Related posts about concurrency