diff --git a/configs/development.ini b/configs/development.ini --- a/configs/development.ini +++ b/configs/development.ini @@ -65,6 +65,8 @@ asyncore_use_poll = true ## type of worker class, one of sync, gevent ## recommended for bigger setup is using of of other than sync one #worker_class = sync +## The maximum number of simultaneous clients. Valid only for Gevent +#worker_connections = 10 ## max number of requests that worker will handle before being gracefully ## restarted, could prevent memory leaks #max_requests = 1000 diff --git a/configs/production.ini b/configs/production.ini --- a/configs/production.ini +++ b/configs/production.ini @@ -65,6 +65,8 @@ asyncore_use_poll = true ## type of worker class, one of sync, gevent ## recommended for bigger setup is using of of other than sync one #worker_class = sync +## The maximum number of simultaneous clients. Valid only for Gevent +#worker_connections = 10 ## max number of requests that worker will handle before being gracefully ## restarted, could prevent memory leaks #max_requests = 1000