Flask will process one request per thread at the same time. If you have 2 processes with 4 threads each, that’s 8 concurrent requests. Flask doesn’t spawn or manage threads or processes.
Flask will process one request per thread at the same time. If you have 2 processes with 4 threads each, that’s 8 concurrent requests. Flask doesn’t spawn or manage threads or processes.