Nginx worker_connections
"sets the maximum number of simultaneous connections that can be opened by a worker process. This number includes all connections (e.g. connections with proxied servers, among others), not only connections with clients. Another consideration is that the actual number of simultaneous connections cannot exceed the current limit on the maximum number of open files". I have few queries around this:
- What should be the optimal or recommended value for this?
- What are the downsides of using a high number of worker connections?