lemoncurry/gunicorn.py

6 lines
119 B
Python
Raw Normal View History

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