在 Tomcat 的 server.xml
中,maxThreads
和 maxConnections
的比值是多少?
我知道 maxConnections
是打开到服务器的连接数。
maxThreads
是请求处理线程的最大数量。
但是这两个配置参数是如何协同工作的呢?--显然,您不会将 maxConnections
设置为1000,而将 maxThreads
设置为10。
这两个配置参数之间的关系是什么?
<Connector
port="8443"
protocol="org.apache.coyote.http11.Http11Protocol"
maxThreads="250"
SSLEnabled="true"
scheme="https" secure="true"
clientAuth="false"
sslProtocol="TLS"
connectiontimeout="20000"
/>