diff --git a/gunicorn.conf.py b/gunicorn.conf.py index 7e80694..b79de4e 100644 --- a/gunicorn.conf.py +++ b/gunicorn.conf.py @@ -9,7 +9,7 @@ worker_class = 'gevent' # 设置最大并发量 daemon = False debug = False -worker_connections = 1000 +worker_connections = 2000 workers = multiprocessing.cpu_count() * 2 + 1 timeout = 120