官方地址:如下 http://tomcat.apache.org/tomcat-7.0-doc/config/http.html
我的配置如下:
<!--
protocol="org.apache.coyote.http11.Http11NioProtocol" 使用nio模式,提高性能
acceptorThreadCount="2" 双核启用
connectionTimeout="30000" 连接超时30秒
URIEncoding="utf-8"
enableLookups="false" 关闭ip反查,提高性能
maxThreads="1000" 最多线程1000个
acceptCount="1000" 线程满了,请求队列数量1000个
maxConnections="10000" 最多请求量
minSpareThreads="30"
tcpNoDelay="true"
-->
<Connector port="8080"
protocol="org.apache.coyote.http11.Http11NioProtocol"
acceptorThreadCount="2"
connectionTimeout="30000"
URIEncoding="utf-8"
enableLookups="false"
maxThreads="1000"
acceptCount="1000"
maxConnections="10000"
minSpareThreads="30"
tcpNoDelay="true"
/>