Sept. 30, 2011
5:42 a.m.
On 30 September 2011 13:39, John Anderson <sontek@gmail.com> wrote:
In cpython I deploy using gevent or gunicorn for high performance/low memory usage with the ability to be non-blocking for realtime communication using socket.io. If I want to move to using PyPy... what are my options for this type of setup? Is there a non-blocking webserver in python that works well with PyPy?
Twisted has worked well for some time. Gevent is written in cython, which is currently not supported. Not sure about Gunicorn, it seems to be able to sit on top of several different workers. -- William Leslie