Как лучше начать проект django? [закрыто]
Я использую фреймворк Django. Я попробовал следующие четыре метода для запуска моего проекта
python manage.py. Disadvantage: If the first request get stuck, all the other requests will get stuck.gunicorn. Disadvantage: it has conflicts with asynchronous servers. (websockets)uvicorn. Disadvantage: it doesn't process some requests randomly.gunicorn+uvicorn(gunicorn myproject.asgi:application -k uvicorn.workers.UvicornWorker -b 0.0.0.0:8000). Disadvantage: the same withpython manage.py