I tend to disagree a bit on the last sentence: if you use a sql driver like PyMySQL and run gunicorn with the gevent worker, you will notice a dramatic boost on high loads.
You can probably do the same stuff through mod_wsgi, but gunicorn configuration is pretty straightforward.
IOW the stack counts a lot when you do I/O bound Python apps.
Comment
I tend to disagree a bit on the last sentence: if you use a sql driver like PyMySQL and run gunicorn with the gevent worker, you will notice a dramatic boost on high loads.
You can probably do the same stuff through mod_wsgi, but gunicorn configuration is pretty straightforward.
IOW the stack counts a lot when you do I/O bound Python apps.