I have a django app and I decided that I needed gevent so the webserver does not block on long connections.
I am not using websockets - just a simple app. I can use gevent with gunicorn like so:
gunicorn -k gevent -c config.py -b :9999 app:app
In my app, I do not have anything like the following code in manage.py:
monkey.patch_all()
When do I need to use the monkey patch? How come the app works fine without this change?