You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is an awesome library that I'm testing to implement into our production environment to solve a lot of connections being open by Django.
For now, it's working smooth and docs are pretty clear, I just have a question about what is the behavior when my gunicorn has the following parameters:
--workers=3
--threads=4
If I had only workers set, the maximum number of connections will not exceed workers * pool_size + workers * max_pool. But what's happen when set threads?