|
|
|
|
|
by imperio59
6 days ago
|
|
Do not use the development http server in a production setting. Use gunicorn or some equivalent. I had the same issue with incredibly low throughput on beefy machines and it's because the dev server implementation is single threaded and does not do concurrency at all. Switch to gunicorn. |
|