[Solved]-Gunicorn or uwsgi both ~30x slower than Django WSGI server

0👍

The reason is more or less related to the Gunicorn worker_class mode. If you set it to "gevent", it will perform the same speed as Django WSGI server after I test it.

# cat gunicorn_config.py 
worker_class = 'gevent'
workers = 32
👤JW Zhu

Leave a comment