SearchTable Of Contents
Previous topicNext topicThis Page |
Hello World Benchmark¶How the benchmarks were performed?¶We created a “Hello World” benchmark seeking to identify the smallest load overhead of each framework. Many people don’t like this kind of benchmark because real-world applications require more complex features or structures. However, these tests identify the minimum time spent by each framework to perform a simple task. Such a task represents the mimimum requirement for every framework to process a single request. More specifically, the benchmark only measures the time it takes for a framework to start, run an action and free up resources at the end of the request. Any PHP application based on an MVC architecture will require this time. Due to the simplicity of the benchmark, we ensure that the time needed for a more complex request will be higher. A controller and a view have been created for each framework. The controller “say” and action “hello”. The action only sends data to the view which displays it (“Hello!”). Using the “ab” benchmark tool we sent 1000 requests using 5 concurrent connections to each framework. What measurements were recorded?¶These were the measurements we record to identify the overall performance of each framework:
Pariticipant Frameworks¶
Results¶Yii (YII_DEBUG=false) Version yii-1.1.12.b600af¶# ab -n 1000 -c 5 http://localhost/bench/yii/index.php?r=say/hello
This is ApacheBench, Version 2.3 <$Revision: 655654 $>
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)
Server Software: Apache/2.2.22
Server Hostname: localhost
Server Port: 80
Document Path: /bench/yii/index.php?r=say/hello
Document Length: 61 bytes
Concurrency Level: 5
Time taken for tests: 1.174 seconds
Complete requests: 1000
Failed requests: 0
Write errors: 0
Total transferred: 254000 bytes
HTML transferred: 61000 bytes
Requests per second: 851.83 [#/sec] (mean)
Time per request: 5.870 [ms] (mean)
Time per request: 1.174 [ms] (mean, across all concurrent requests)
Transfer rate: 211.29 [Kbytes/sec] received
Connection Times (ms)
min mean[+/-sd] median max
Connect: 0 6 2.5 5 20
Processing: 0 0 0.4 0 6
Waiting: 0 0 0.3 0 6
Total: 2 6 2.5 5 20
Percentage of the requests served within a certain time (ms)
50% 5
66% 6
75% 7
80% 7
90% 9
95% 11
98% 14
99% 15
100% 20 (longest request)
Symfony Version 2.0.11¶# ab -n 1000 -c 5 http://localhost/bench/Symfony/web/app.php/say/hello/
This is ApacheBench, Version 2.3 <$Revision: 655654 $>
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)
Server Software: Apache/2.2.22
Server Hostname: localhost
Server Port: 80
Document Path: /bench/Symfony/web/app.php/say/hello/
Document Length: 16 bytes
Concurrency Level: 5
Time taken for tests: 1.848 seconds
Complete requests: 1000
Failed requests: 0
Write errors: 0
Total transferred: 249000 bytes
HTML transferred: 16000 bytes
Requests per second: 541.01 [#/sec] (mean)
Time per request: 9.242 [ms] (mean)
Time per request: 1.848 [ms] (mean, across all concurrent requests)
Transfer rate: 131.55 [Kbytes/sec] received
Connection Times (ms)
min mean[+/-sd] median max
Connect: 0 9 4.8 8 61
Processing: 0 0 0.6 0 15
Waiting: 0 0 0.6 0 15
Total: 4 9 4.8 8 61
Percentage of the requests served within a certain time (ms)
50% 8
66% 9
75% 11
80% 12
90% 15
95% 18
98% 22
99% 30
100% 61 (longest request)
CodeIgniter 2.1.0¶# ab -n 1000 -c 5 http://localhost/bench/codeigniter/index.php/say/hello
This is ApacheBench, Version 2.3 <$Revision: 655654 $>
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)
Server Software: Apache/2.2.22
Server Hostname: localhost
Server Port: 80
Document Path: /bench/codeigniter/index.php/say/hello
Document Length: 16 bytes
Concurrency Level: 5
Time taken for tests: 1.159 seconds
Complete requests: 1000
Failed requests: 0
Write errors: 0
Total transferred: 209000 bytes
HTML transferred: 16000 bytes
Requests per second: 862.58 [#/sec] (mean)
Time per request: 5.797 [ms] (mean)
Time per request: 1.159 [ms] (mean, across all concurrent requests)
Transfer rate: 176.05 [Kbytes/sec] received
Connection Times (ms)
min mean[+/-sd] median max
Connect: 0 6 3.3 5 34
Processing: 0 0 1.5 0 34
Waiting: 0 0 1.5 0 34
Total: 2 6 3.5 5 35
Percentage of the requests served within a certain time (ms)
50% 5
66% 6
75% 6
80% 7
90% 8
95% 12
98% 17
99% 24
100% 35 (longest request)
Kohana 3.2.0¶# ab -n 1000 -c 5 http://localhost/bench/kohana/index.php/say/hello
This is ApacheBench, Version 2.3 <$Revision: 655654 $>
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)
Server Software: Apache/2.2.22
Server Hostname: localhost
Server Port: 80
Document Path: /bench/kohana/index.php/say/hello
Document Length: 15 bytes
Concurrency Level: 5
Time taken for tests: 1.375 seconds
Complete requests: 1000
Failed requests: 0
Write errors: 0
Total transferred: 223000 bytes
HTML transferred: 15000 bytes
Requests per second: 727.07 [#/sec] (mean)
Time per request: 6.877 [ms] (mean)
Time per request: 1.375 [ms] (mean, across all concurrent requests)
Transfer rate: 158.34 [Kbytes/sec] received
Connection Times (ms)
min mean[+/-sd] median max
Connect: 0 7 3.3 6 37
Processing: 0 0 0.6 0 10
Waiting: 0 0 0.4 0 6
Total: 3 7 3.3 6 37
Percentage of the requests served within a certain time (ms)
50% 6
66% 7
75% 8
80% 8
90% 10
95% 13
98% 16
99% 20
100% 37 (longest request)
Fuel 1.2.1¶# ab -n 1000 -c 5 http://localhost/bench/fuel/say/hello
This is ApacheBench, Version 2.3 <$Revision: 655654 $>
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)
Server Software: Apache/2.2.22
Server Hostname: localhost
Server Port: 80
Document Path: /bench/fuel/public/say/hello
Document Length: 16 bytes
Concurrency Level: 5
Time taken for tests: 1.759 seconds
Complete requests: 1000
Failed requests: 0
Write errors: 0
Total transferred: 209000 bytes
HTML transferred: 16000 bytes
Requests per second: 568.41 [#/sec] (mean)
Time per request: 8.796 [ms] (mean)
Time per request: 1.759 [ms] (mean, across all concurrent requests)
Transfer rate: 116.01 [Kbytes/sec] received
Connection Times (ms)
min mean[+/-sd] median max
Connect: 0 9 4.3 8 51
Processing: 0 0 1.3 0 34
Waiting: 0 0 1.3 0 34
Total: 4 9 4.4 8 51
Percentage of the requests served within a certain time (ms)
50% 8
66% 9
75% 10
80% 11
90% 13
95% 17
98% 22
99% 26
100% 51 (longest request)
Cake 2.1.3¶# ab -n 10 -c 5 http://localhost/bench/cake/say/hello
This is ApacheBench, Version 2.3 <$Revision: 655654 $>
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).....done
Server Software: Apache/2.2.22
Server Hostname: localhost
Server Port: 80
Document Path: /bench/cake/say/hello
Document Length: 16 bytes
Concurrency Level: 5
Time taken for tests: 30.051 seconds
Complete requests: 10
Failed requests: 0
Write errors: 0
Total transferred: 1680 bytes
HTML transferred: 160 bytes
Requests per second: 0.33 [#/sec] (mean)
Time per request: 15025.635 [ms] (mean)
Time per request: 3005.127 [ms] (mean, across all concurrent requests)
Transfer rate: 0.05 [Kbytes/sec] received
Connection Times (ms)
min mean[+/-sd] median max
Connect: 0 2 3.6 0 11
Processing: 15009 15020 9.8 15019 15040
Waiting: 9 21 7.9 25 33
Total: 15009 15022 8.9 15021 15040
Percentage of the requests served within a certain time (ms)
50% 15021
66% 15024
75% 15024
80% 15032
90% 15040
95% 15040
98% 15040
99% 15040
100% 15040 (longest request)
Zend Framework 1.11.11¶# ab -n 10 -c 5 http://localhost/bench/zendfw/public/say/hello
This is ApacheBench, Version 2.3 <$Revision: 655654 $>
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)
Server Software: Apache/2.2.22
Server Hostname: localhost
Server Port: 80
Document Path: /bench/zendfw/public/say/hello
Document Length: 16 bytes
Concurrency Level: 5
Time taken for tests: 3.086 seconds
Complete requests: 1000
Failed requests: 0
Write errors: 0
Total transferred: 209000 bytes
HTML transferred: 16000 bytes
Requests per second: 324.02 [#/sec] (mean)
Time per request: 15.431 [ms] (mean)
Time per request: 3.086 [ms] (mean, across all concurrent requests)
Transfer rate: 66.13 [Kbytes/sec] received
Connection Times (ms)
min mean[+/-sd] median max
Connect: 0 15 6.1 14 61
Processing: 0 0 1.7 0 37
Waiting: 0 0 1.7 0 36
Total: 8 15 6.1 14 61
Percentage of the requests served within a certain time (ms)
50% 14
66% 16
75% 17
80% 18
90% 23
95% 27
98% 33
99% 37
100% 61 (longest request)
Laravel 3.2.5¶This is ApacheBench, Version 2.3 <$Revision: 655654 $>
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)
Server Software: Apache/2.2.22
Server Hostname: localhost
Server Port: 80
Document Path: /bench/laravel/public/say/hello
Document Length: 15 bytes
Concurrency Level: 5
Time taken for tests: 2.353 seconds
Complete requests: 1000
Failed requests: 0
Write errors: 0
Total transferred: 831190 bytes
HTML transferred: 15000 bytes
Requests per second: 424.97 [#/sec] (mean)
Time per request: 11.765 [ms] (mean)
Time per request: 2.353 [ms] (mean, across all concurrent requests)
Transfer rate: 344.96 [Kbytes/sec] received
Connection Times (ms)
min mean[+/-sd] median max
Connect: 0 12 5.6 10 56
Processing: 0 0 0.6 0 10
Waiting: 0 0 0.5 0 10
Total: 5 12 5.6 10 56
Percentage of the requests served within a certain time (ms)
50% 10
66% 12
75% 13
80% 15
90% 18
95% 22
98% 29
99% 36
100% 56 (longest request)
Nette 2.0.4¶# ab -n 1000 -c 5 http://localhost/bench/nette/www/index.php
This is ApacheBench, Version 2.3 <$Revision: 655654 $>
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)
Server Software: Apache/2.2.22
Server Hostname: localhost
Server Port: 80
Document Path: /bench/helloworld/nette/www/index.php
Document Length: 205 bytes
Concurrency Level: 5
Time taken for tests: 3.569 seconds
Complete requests: 1000
Failed requests: 0
Write errors: 0
Total transferred: 448000 bytes
HTML transferred: 205000 bytes
Requests per second: 280.18 [#/sec] (mean)
Time per request: 17.846 [ms] (mean)
Time per request: 3.569 [ms] (mean, across all concurrent requests)
Transfer rate: 122.58 [Kbytes/sec] received
Connection Times (ms)
min mean[+/-sd] median max
Connect: 0 18 6.6 16 63
Processing: 0 0 1.0 0 20
Waiting: 0 0 1.0 0 20
Total: 9 18 6.6 16 63
Percentage of the requests served within a certain time (ms)
50% 16
66% 19
75% 20
80% 22
90% 27
95% 31
98% 37
99% 39
100% 63 (longest request)
Phalcon Version 0.5.0¶# ab -n 1000 -c 5 http://localhost/bench/phalcon/index.php?_url=/say/hello
This is ApacheBench, Version 2.3 <$Revision: 655654 $>
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)
Server Software: Apache/2.2.22
Server Hostname: localhost
Server Port: 80
Document Path: /bench/phalcon/index.php?_url=/say/hello
Document Length: 16 bytes
Concurrency Level: 5
Time taken for tests: 0.419 seconds
Complete requests: 1000
Failed requests: 0
Write errors: 0
Total transferred: 209000 bytes
HTML transferred: 16000 bytes
Requests per second: 2386.74 [#/sec] (mean)
Time per request: 2.095 [ms] (mean)
Time per request: 0.419 [ms] (mean, across all concurrent requests)
Transfer rate: 487.14 [Kbytes/sec] received
Connection Times (ms)
min mean[+/-sd] median max
Connect: 0 2 1.1 2 17
Processing: 0 0 0.1 0 3
Waiting: 0 0 0.1 0 2
Total: 1 2 1.1 2 17
Percentage of the requests served within a certain time (ms)
50% 2
66% 2
75% 2
80% 2
90% 3
95% 4
98% 5
99% 7
100% 17 (longest request)
Graphs¶The first graph shows how many requests per second each framework was able to accept. The second shows the average time across all concurrent requests. Conclusion¶The compiled nature of Phalcon offers extraordinary performance that outperforms all other frameworks measured in these benchmarks. |