lemoncurry/gunicorn.py

6 lines
119 B
Python
Raw Normal View History

import multiprocessing
2023-08-10 16:52:37 +10:00
proc_name = "lemoncurry"
worker_class = "gevent"
workers = multiprocessing.cpu_count() * 2 + 1