2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-12 10:05:39 +00:00
Files
.github
InvenTree
ci
deploy
docker
Dockerfile
dev-config.env
docker-compose.dev.yml
docker-compose.yml
gunicorn.conf.py
nginx.conf
start_dev_server.sh
start_dev_worker.sh
start_prod_server.sh
start_prod_worker.sh
images
.coveragerc
.gitattributes
.gitignore
CONTRIBUTING.md
LICENSE
README.md
RELEASE.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