2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-14 02:55:41 +00:00
Files
.github
InvenTree
ci
deploy
docker
Dockerfile
docker-compose.yml
gunicorn.conf.py
nginx.conf
start_dev_server.sh
start_prod_server.sh
start_worker.sh
images
.coveragerc
.gitattributes
.gitignore
CONTRIBUTING.md
LICENSE
README.md
crowdin.yml
requirements.txt
setup.cfg
tasks.py
InvenTree/docker/gunicorn.conf.py
2021-04-18 15:24:33 +10:00

7 lines
116 B
Python

import multiprocessing
workers = multiprocessing.cpu_count() * 2 + 1
max_requests = 1000
max_requests_jitter = 50