How Many Workers? How Many Workers? DO NOT scale the number of workers to the number of clients you expect to have. Gunicorn should only need 4-12 worker processes to handle hu...
How Many Threads? How Many Threads? Since Gunicorn 19, a threads option can be used to process requests in multiple threads. Using threads assumes use of the gthread worker. On...
Logging Watch your logs Basic usage Filtering Realtime logging Logging tsuru aggregates stdout and stderr from every application process making iteasier to troubleshoot pro...
eventlet Installing Running Binding Externally eventlet Prefer using Gunicorn with eventlet workers rather than using eventlet directly. Gunicorn provides a much more confi...
gevent Installing Running Binding Externally gevent Prefer using Gunicorn or uWSGI with gevent workers rather than using gevent directly. Gunicorn and uWSGI provide much m...