uwsgi processes * threads = maximum simultanous connections?
We are using uwsgi to serve the python app behind nginx.
Can I hope that the theoretical maximum of simultaneously served client connections is equal to uwsgi processes * threads?
We are using server-sent events, so, the connections are held for a long time.
Solution 1:
yes, every single thread can manage a single request, so if you have 3 processes and 5 threads you can manage 15 concurrent requests.