Is your feature request related to a problem? Please describe.
Use Gunicorn to run the application an several processes and to be able to handle more requests (scalability & replication)
Describe the solution you'd like
Additional context
See https://fastapi.tiangolo.com/deployment/server-workers/
Is your feature request related to a problem? Please describe.
Use
Gunicornto run the application an several processes and to be able to handle more requests (scalability & replication)Describe the solution you'd like
gunicorn,gunicorn main:app --workers 4 --worker-classoruvicorn main:app --host 0.0.0.0 --port 8080 --workers 4.Additional context
See https://fastapi.tiangolo.com/deployment/server-workers/