In the uwsgi.ini file, I see the configuration
[uwsgi]
socket = 127.0.0.1:3031
chdir = /home/foobar/myproject/
wsgi-file = myproject/wsgi.py
processes = 4
threads = 2
stats = 127.0.0.1:9191
I understand that each request is submitted in a different process. Then what are streams used for?
source
share