[Python-ideas] PEP 3156 - gunicorn worker

Benoit Chesneau benoitc at gunicorn.org
Thu Jan 24 14:50:21 CET 2013


On Jan 24, 2013, at 4:50 AM, Nikolay Kim <fafhrd91 at gmail.com> wrote:

> Hello,
> 
> To get feeling of  tulip I wrote gunicorn worker and websocket server, it is possible to run
> wsgi app on top of it. maybe someone will be interested.
> 
> gunicorn worker - https://github.com/fafhrd91/gtulip
> websocket server - https://github.com/fafhrd91/pyramid_sockjs2
> 
> 


Just tested also against a pure wsgi app:

$ gunicorn -w 3 -k gtulip.worker.TulipWorker test:app
2013-01-24 14:45:24 [55771] [INFO] Starting gunicorn 0.17.2
2013-01-24 14:45:24 [55771] [INFO] Listening at: http://127.0.0.1:8000 (55771)
2013-01-24 14:45:24 [55771] [INFO] Using worker: gtulip.worker.TulipWorker
2013-01-24 14:45:24 [55774] [INFO] Booting worker with pid: 55774
2013-01-24 14:45:24 [55775] [INFO] Booting worker with pid: 55775
2013-01-24 14:45:24 [55776] [INFO] Booting worker with pid: 55776


and it works great. Will do more test asap :)

- benoît




More information about the Python-ideas mailing list