Tomcat 忽略设置 - maxThreads maxConnections

Tomcat 忽略设置 - maxThreads maxConnections

我正在对 100 个用户进行压力测试。

  <Connector port="7080" protocol="HTTP/1.1" maxThreads="1500"
      connectionTimeout="20000" acceptCount="1000" maxConnections="1000"
      minSpareThreads="80"
      maxSpareThreads="160"
      compression="on"
      compressableMimeType="text/html,text/xml,text/plain"
      redirectPort="8443" />

当我改变maxThreadsmmaxConnectionsacceptCountall 更改为1我仍然获得相同的性能(70 个用户后无响应)

我只配置了一个其他连接器,AJP

<Connector port="7089" protocol="AJP/1.3" maxThreads="10500" redirectPort="8443" />

为什么配置参数被忽略或没有任何区别?

相关内容