Tomcat 6 최적화
<Connector port="8080" protocol="HTTP/1.1"
redirectPort="8443"
connectionTimeout="20000"
/>
:
<Connector port="8080" protocol="HTTP/1.1"
maxHttpHeaderSize="8192" useBodyEncodingForURI="true"
maxThreads="1000" minSpareThreads="25" maxSpareThreads="75"
redirectPort="8443"
enableLookups="false"
compression="on"
compressionMinSize="2048"
compressableMimeType="text/html,text/xml,text/javascript,text/css,text/plain"
connectionTimeout="20000"
disableUploadTimeout="true"
/>
ab -c 1000 -n 10000 http://www.xxx.com/index.jsp
Document Path: /index.jsp
Document Length: 337 bytes
Concurrency Level: 1000
Time taken for tests: 11.892186 seconds
Complete requests: 10000
Failed requests: 0
Write errors: 0
Total transferred: 5891178 bytes
HTML transferred: 3370674 bytes
Requests per second: 840.89 [#/sec] (mean)
Time per request: 1189.219 [ms] (mean)
Time per request: 1.189 [ms] (mean, across all concurrent requests)
Transfer rate: 483.76 [Kbytes/sec] received
Connection Times (ms)
min mean[+/-sd] median max
Connect: 0 10 230.3 0 9000
Processing: 0 743 2564.5 33 11859
Waiting: 0 742 2564.3 33 11859
Total: 1 753 2578.3 33 11883
Percentage of the requests served within a certain time (ms)
50% 33
66% 37
75% 39
80% 40
90% 156
95% 3952
98% 11844
99% 11865
100% 11883 (longest request)
수정 후 테스트 결과:
Document Path: /index.jsp
Document Length: 337 bytes
Concurrency Level: 1000
Time taken for tests: 1.827710 seconds
Complete requests: 10000
Failed requests: 0
Write errors: 0
Total transferred: 5952434 bytes
HTML transferred: 3405722 bytes
Requests per second: 5471.33 [#/sec] (mean)
Time per request: 182.771 [ms] (mean)
Time per request: 0.183 [ms] (mean, across all concurrent requests)
Transfer rate: 3179.94 [Kbytes/sec] received
Connection Times (ms)
min mean[+/-sd] median max
Connect: 0 37 30.0 30 128
Processing: 36 140 48.6 147 351
Waiting: 4 83 39.9 77 306
Total: 68 178 53.5 187 475
Percentage of the requests served within a certain time (ms)
50% 187
66% 198
75% 202
80% 205
90% 212
95% 220
98% 230
99% 430
100% 475 (longest request)
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다른 사람의 웹사이트 편집: contenteditable 및 designMode그래도 우리가 그렇게 할 수 있다고 생각하는 것은 멋진 일입니다. 제가 강조하고 싶었던 일종의 관련 API가 실제로 몇 개 있기 때문에 오늘 그것을 가져왔습니다. contenteditable는 "true" 값이 할당...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.