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
Source:stackexchange.com