top | item 29306029

(no title)

batiste | 4 years ago

Love Django. But we are using Django with Gunicorn at work and we are having massive concurrency issues (1 process, gthread)... More than 4 concurrent requests waiting on a slow IO and the whole thing melts down...

FastAPI doesn't have those issues at all...

discuss

order

frankwiles|4 years ago

This is definitely something about your local setup or config. We routinely run hundreds and thousands of simultaneous connections through various versions of Django without much trouble.

MrOxiMoron|4 years ago

do you run fastapi through wsgi? have you tried Django with asgi?