इसलिए मैं एक समान बेंचमार्क को फेंकना चाहता था। मैंने एक ट्विटर बूटस्ट्रैप उदाहरण पृष्ठ लिया और इसे एक्सएचटीएमएल में बदल दिया। उसके बाद, मैंने बिल्कुल एक ApplicationScoped CDI बीन की स्थापना की, जो हैलो, वर्ल्ड लौटा। मैंने पेज पर ईएल एक्सप्रेशन डाला। जेएसएफ संस्करण के लिए, मैंने जेएसएफ संसाधन हैंडलर का उपयोग किया, जेएसपीएक्स संस्करण के लिए, मैंने एचटीएमएल शैली सीएसएस और जेएस का उपयोग किया।
मैंने मुख्य पृष्ठ लोड समय का परीक्षण करने के लिए अपाचे बेंच का उपयोग किया। परीक्षण एक अन-ऑप्टिमाइज़्ड TomEE + v1.5.2 सर्वर पर किया गया था। मैंने प्रत्येक बेंचमार्क 5x चलाया, फिर माप लेने से पहले एक पूर्ण GC चलाया। जेवीएम को फिर से शुरू किए बिना एक ही जेवीएम उदाहरण में बॉस्केट परीक्षण किए गए थे। मेरे पास परिवाद पर एपीआर उपलब्ध है, लेकिन मुझे यकीन नहीं है कि इस परीक्षण को प्रभावित करता है।
JSF धीमा है, लेकिन बहुत कम नहीं, क्योंकि हम बहुत कम मात्रा में काम कर रहे हैं। क्या प्रदर्शित नहीं किया जाता है क्योंकि पेज अधिक जटिल होते हैं, जेएसएफ / जेएसपीएक्स स्केल को रैखिक रूप से या तेजी से करता है।
एक बात मैंने देखी कि जेएसएफ की तुलना में जेएसपीएक्स बहुत कम कचरा पैदा करता है। JSPX पेज पर बेंचमार्क चलाने से इस्तेमाल किया हुआ ढेर 184mb से 237mb तक कूद जाता है। जेएसएफ पेज पर एक ही जेवीएम में बेंचमार्क चलाने से उपयोग किए गए ढेर को 108mb से कम से कम 404mb तक कूदने का कारण बनता है , लेकिन उस बिंदु पर एक स्वचालित कचरा संग्रह किक होता है। ऐसा लगता है कि JSF के लिए आपका कचरा संग्रहकर्ता एक पूर्ण आवश्यकता है ।
JSF
jonfisher@peanut:~$ /usr/local/bin/ab -n 10000 -c 100 http://localhost:8080/cdi-jsp/index.jsf
This is ApacheBench, Version 2.3 <$Revision: 1373084 $>
Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/
Licensed to The Apache Software Foundation, http://www.apache.org/
Benchmarking localhost (be patient)
Completed 1000 requests
Completed 2000 requests
Completed 3000 requests
Completed 4000 requests
Completed 5000 requests
Completed 6000 requests
Completed 7000 requests
Completed 8000 requests
Completed 9000 requests
Completed 10000 requests
Finished 10000 requests
Server Software: Apache-Coyote/1.1
Server Hostname: localhost
Server Port: 8080
Document Path: /cdi-jsp/index.jsf
Document Length: 2904 bytes
Concurrency Level: 100
Time taken for tests: 2.138 seconds
Complete requests: 10000
Failed requests: 0
Write errors: 0
Total transferred: 32160000 bytes
HTML transferred: 29040000 bytes
Requests per second: 4677.27 [#/sec] (mean)
Time per request: 21.380 [ms] (mean)
Time per request: 0.214 [ms] (mean, across all concurrent requests)
Transfer rate: 14689.55 [Kbytes/sec] received
Connection Times (ms)
min mean[+/-sd] median max
Connect: 0 1 1.3 1 21
Processing: 1 20 9.0 18 63
Waiting: 1 19 8.8 17 62
Total: 2 21 8.8 20 64
Percentage of the requests served within a certain time (ms)
50% 20
66% 23
75% 25
80% 27
90% 32
95% 39
98% 46
99% 50
100% 64 (longest request)
JSPX
jonfisher@peanut:~$ /usr/local/bin/ab -n 10000 -c 100 http://localhost:8080/cdi-jsp/page2.jspx
This is ApacheBench, Version 2.3 <$Revision: 1373084 $>
Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/
Licensed to The Apache Software Foundation, http://www.apache.org/
Benchmarking localhost (be patient)
Completed 1000 requests
Completed 2000 requests
Completed 3000 requests
Completed 4000 requests
Completed 5000 requests
Completed 6000 requests
Completed 7000 requests
Completed 8000 requests
Completed 9000 requests
Completed 10000 requests
Finished 10000 requests
Server Software: Apache-Coyote/1.1
Server Hostname: localhost
Server Port: 8080
Document Path: /cdi-jsp/page2.jspx
Document Length: 2440 bytes
Concurrency Level: 100
Time taken for tests: 1.273 seconds
Complete requests: 10000
Failed requests: 0
Write errors: 0
Total transferred: 26290000 bytes
HTML transferred: 24400000 bytes
Requests per second: 7856.63 [#/sec] (mean)
Time per request: 12.728 [ms] (mean)
Time per request: 0.127 [ms] (mean, across all concurrent requests)
Transfer rate: 20170.98 [Kbytes/sec] received
Connection Times (ms)
min mean[+/-sd] median max
Connect: 0 5 2.3 6 20
Processing: 1 8 4.6 6 40
Waiting: 1 8 4.3 6 40
Total: 2 13 3.8 12 41
Percentage of the requests served within a certain time (ms)
50% 12
66% 12
75% 13
80% 13
90% 17
95% 20
98% 24
99% 28
100% 41 (longest request)