Gzip相關(guān)設(shè)置
作用:用來壓縮網(wǎng)絡(luò)參數(shù)
相關(guān)參數(shù):
①compression --是否開啟Gzip壓縮
②compressableMimeType --壓縮類型 默認(rèn):html义郑、xml、txt
③compressMinSize --壓縮后輸出內(nèi)容大姓筛啤(壓縮后緩沖區(qū)大蟹峭浴)默認(rèn)2048B(2KB)
<Connector port="8080" protocol="HTTP/1.1"
? ? ? ? ? ? ? ?maxConnections="3000"
? ? ? ? ? ? ? ?maxThreads="500"
? ? ? ? ? ? ? ?acceptCount="500"
? ? ? ? ? ? ? ?compression="true"
? ? ? ? ? ? ? ?compressionMinSize="2048"
? ? ? ? ? ? ? ?connectionTimeout="20000"
? ? ? ? ? ? ? ?redirectPort="8443" />
其他項(xiàng)配置
enableLookups -- 開啟反查域名(對性能有影響,但是某種場景下很好用雏赦。)
connectionTimeout -- 網(wǎng)絡(luò)連接超時(shí)閾值(默認(rèn)20000)
minSpareThreads -- 最小空閑線程數(shù)(在沒有訪問的情況下最小保持多少活躍)
最終版本
<Connector port="8080" protocol="HTTP/1.1"
? ? ? ? ? ? ? ?maxConnections="3000"
? ? ? ? ? ? ? ?maxThreads="500"
? ? ? ? ? ? ? ?acceptCount="500"
? ? ? ? ? ? ? ?minspareThreads="100"
? ? ? ? ? ? ? ?compression="true"
? ? ? ? ? ? ? ?compressionMinSize="2048"
? ? ? ? ? ? ? ?connectionTimeout="20000"
? ? ? ? ? ? ? ?redirectPort="8443" />