My flask app is so minimal its just gonna hit an external url, get that response and return that response to the requested client. Flask app named sampleapp is being served in gunicorn by following execution
gunicorn sampleapp:app -w 1 --threads 2 --bind 0.0.0.0:8000
Whats the worker and threads counts actually do. I made gunicorn to work with 1 worker and 2 threads here, how many requests my flask app will handle at minimum in a second. Anyone clarify