gunicorn 默认使用多少个 worker?
How many workers does gunicorn use by default?
我似乎无法在 gunicorn 文档中找到答案。当你 运行 使用 gunicorn 的 flask 应用程序没有指定工作线程和线程的数量时,它们的默认值是多少?
命令:
gunicorn -b :$PORT main:app
根据 Gunicorn 工人数量的文档:
By default, the value of the WEB_CONCURRENCY
environment variable. If it is not defined, the default is 1
.
我似乎无法在 gunicorn 文档中找到答案。当你 运行 使用 gunicorn 的 flask 应用程序没有指定工作线程和线程的数量时,它们的默认值是多少?
命令:
gunicorn -b :$PORT main:app
根据 Gunicorn 工人数量的文档:
By default, the value of the
WEB_CONCURRENCY
environment variable. If it is not defined, the default is1
.