gram on Nostr: npub1zuzyg…hm2vc If you are talking about handling HTTP requests, yes, every major ...
npub1zuzyg5k8qdtu89nnzr5qmflzwleu7rlhm0t50gduu83qr04nrnus0hm2vc (npub1zuz…m2vc)
If you are talking about handling HTTP requests, yes, every major #Python HTTP server (like gunicorn) spawns multiple processes with multiple threads in each, and the async/await-powered ones (like uvicorn, hypercorn, daphne) also spawn an event loop in each.
Just make sure to use one on the prod and to check what configuration options they have. For example, if you use #FastAPI as the web framework:
https://fastapi.tiangolo.com/deployment/manually/
If you are talking about handling HTTP requests, yes, every major #Python HTTP server (like gunicorn) spawns multiple processes with multiple threads in each, and the async/await-powered ones (like uvicorn, hypercorn, daphne) also spawn an event loop in each.
Just make sure to use one on the prod and to check what configuration options they have. For example, if you use #FastAPI as the web framework:
https://fastapi.tiangolo.com/deployment/manually/