Created
September 8, 2012 17:03
-
-
Save kazupon/3677220 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Machine spec | |
TODO: | |
# lev | |
* version: maglev branch (commit:b03a16d) | |
# luvit | |
* version: 0.5.0 | |
# node.js | |
* version: 0.8.8 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local net = require('net') | |
local server | |
server = net.createServer(function (client) | |
client:write("HTTP/1.0 200 OK\r\nConnection: Close\r\nContent-Type: text/html\r\nContent-Length: 14\r\n\r\nHello World\n\r\n") | |
client:destroy() | |
end):listen(8080) | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var net = require('net') | |
var server = net.createServer(function (client) { | |
client.write("HTTP/1.0 200 OK\r\nConnection: Close\r\nContent-Type: text/html\r\nContent-Length: 14\r\n\r\nHello World\n\r\n") | |
client.end(); | |
}).listen(8080); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 127.0.0.1 (be patient) | |
Server Software: | |
Server Hostname: 127.0.0.1 | |
Server Port: 8080 | |
Document Path: / | |
Document Length: 14 bytes | |
Concurrency Level: 20 | |
Time taken for tests: 0.024 seconds | |
Complete requests: 500 | |
Failed requests: 0 | |
Write errors: 0 | |
Total transferred: 48500 bytes | |
HTML transferred: 7000 bytes | |
Requests per second: 20685.09 [#/sec] (mean) | |
Time per request: 0.967 [ms] (mean) | |
Time per request: 0.048 [ms] (mean, across all concurrent requests) | |
Transfer rate: 1959.43 [Kbytes/sec] received | |
Connection Times (ms) | |
min mean[+/-sd] median max | |
Connect: 0 0 0.1 0 1 | |
Processing: 0 0 0.1 0 1 | |
Waiting: 0 0 0.1 0 1 | |
Total: 0 1 0.1 1 1 | |
Percentage of the requests served within a certain time (ms) | |
50% 1 | |
66% 1 | |
75% 1 | |
80% 1 | |
90% 1 | |
95% 1 | |
98% 1 | |
99% 1 | |
100% 1 (longest request) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 127.0.0.1 (be patient) | |
Server Software: | |
Server Hostname: 127.0.0.1 | |
Server Port: 8080 | |
Document Path: / | |
Document Length: 14 bytes | |
Concurrency Level: 20 | |
Time taken for tests: 0.025 seconds | |
Complete requests: 500 | |
Failed requests: 0 | |
Write errors: 0 | |
Total transferred: 48500 bytes | |
HTML transferred: 7000 bytes | |
Requests per second: 20343.40 [#/sec] (mean) | |
Time per request: 0.983 [ms] (mean) | |
Time per request: 0.049 [ms] (mean, across all concurrent requests) | |
Transfer rate: 1927.06 [Kbytes/sec] received | |
Connection Times (ms) | |
min mean[+/-sd] median max | |
Connect: 0 0 0.1 0 1 | |
Processing: 0 0 0.1 0 1 | |
Waiting: 0 0 0.1 0 1 | |
Total: 0 1 0.1 1 1 | |
Percentage of the requests served within a certain time (ms) | |
50% 1 | |
66% 1 | |
75% 1 | |
80% 1 | |
90% 1 | |
95% 1 | |
98% 1 | |
99% 1 | |
100% 1 (longest request) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 127.0.0.1 (be patient) | |
Server Software: | |
Server Hostname: 127.0.0.1 | |
Server Port: 8080 | |
Document Path: / | |
Document Length: 14 bytes | |
Concurrency Level: 20 | |
Time taken for tests: 0.026 seconds | |
Complete requests: 500 | |
Failed requests: 0 | |
Write errors: 0 | |
Total transferred: 48500 bytes | |
HTML transferred: 7000 bytes | |
Requests per second: 19255.21 [#/sec] (mean) | |
Time per request: 1.039 [ms] (mean) | |
Time per request: 0.052 [ms] (mean, across all concurrent requests) | |
Transfer rate: 1823.98 [Kbytes/sec] received | |
Connection Times (ms) | |
min mean[+/-sd] median max | |
Connect: 0 0 0.1 0 1 | |
Processing: 0 1 0.1 1 1 | |
Waiting: 0 0 0.1 0 1 | |
Total: 0 1 0.2 1 2 | |
Percentage of the requests served within a certain time (ms) | |
50% 1 | |
66% 1 | |
75% 1 | |
80% 1 | |
90% 1 | |
95% 1 | |
98% 2 | |
99% 2 | |
100% 2 (longest request) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 127.0.0.1 (be patient) | |
Server Software: | |
Server Hostname: 127.0.0.1 | |
Server Port: 8080 | |
Document Path: / | |
Document Length: 14 bytes | |
Concurrency Level: 20 | |
Time taken for tests: 0.028 seconds | |
Complete requests: 500 | |
Failed requests: 0 | |
Write errors: 0 | |
Total transferred: 48500 bytes | |
HTML transferred: 7000 bytes | |
Requests per second: 18179.83 [#/sec] (mean) | |
Time per request: 1.100 [ms] (mean) | |
Time per request: 0.055 [ms] (mean, across all concurrent requests) | |
Transfer rate: 1722.11 [Kbytes/sec] received | |
Connection Times (ms) | |
min mean[+/-sd] median max | |
Connect: 0 1 0.1 0 1 | |
Processing: 0 1 0.1 0 1 | |
Waiting: 0 1 0.1 0 1 | |
Total: 1 1 0.3 1 2 | |
ERROR: The median and mean for the initial connection time are more than twice the standard | |
deviation apart. These results are NOT reliable. | |
ERROR: The median and mean for the processing time are more than twice the standard | |
deviation apart. These results are NOT reliable. | |
ERROR: The median and mean for the waiting time are more than twice the standard | |
deviation apart. These results are NOT reliable. | |
Percentage of the requests served within a certain time (ms) | |
50% 1 | |
66% 1 | |
75% 1 | |
80% 1 | |
90% 2 | |
95% 2 | |
98% 2 | |
99% 2 | |
100% 2 (longest request) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 127.0.0.1 (be patient) | |
Server Software: | |
Server Hostname: 127.0.0.1 | |
Server Port: 8080 | |
Document Path: / | |
Document Length: 14 bytes | |
Concurrency Level: 20 | |
Time taken for tests: 0.029 seconds | |
Complete requests: 500 | |
Failed requests: 0 | |
Write errors: 0 | |
Total transferred: 48500 bytes | |
HTML transferred: 7000 bytes | |
Requests per second: 17363.52 [#/sec] (mean) | |
Time per request: 1.152 [ms] (mean) | |
Time per request: 0.058 [ms] (mean, across all concurrent requests) | |
Transfer rate: 1644.79 [Kbytes/sec] received | |
Connection Times (ms) | |
min mean[+/-sd] median max | |
Connect: 0 1 0.2 0 1 | |
Processing: 0 1 0.3 1 2 | |
Waiting: 0 1 0.2 0 1 | |
Total: 0 1 0.4 1 3 | |
ERROR: The median and mean for the initial connection time are more than twice the standard | |
deviation apart. These results are NOT reliable. | |
ERROR: The median and mean for the waiting time are more than twice the standard | |
deviation apart. These results are NOT reliable. | |
Percentage of the requests served within a certain time (ms) | |
50% 1 | |
66% 1 | |
75% 1 | |
80% 1 | |
90% 2 | |
95% 2 | |
98% 2 | |
99% 2 | |
100% 3 (longest request) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 127.0.0.1 (be patient) | |
Server Software: | |
Server Hostname: 127.0.0.1 | |
Server Port: 8080 | |
Document Path: / | |
Document Length: 14 bytes | |
Concurrency Level: 20 | |
Time taken for tests: 0.025 seconds | |
Complete requests: 500 | |
Failed requests: 0 | |
Write errors: 0 | |
Total transferred: 48500 bytes | |
HTML transferred: 7000 bytes | |
Requests per second: 19906.84 [#/sec] (mean) | |
Time per request: 1.005 [ms] (mean) | |
Time per request: 0.050 [ms] (mean, across all concurrent requests) | |
Transfer rate: 1885.71 [Kbytes/sec] received | |
Connection Times (ms) | |
min mean[+/-sd] median max | |
Connect: 0 0 0.1 0 1 | |
Processing: 0 0 0.1 0 1 | |
Waiting: 0 0 0.1 0 1 | |
Total: 0 1 0.2 1 2 | |
Percentage of the requests served within a certain time (ms) | |
50% 1 | |
66% 1 | |
75% 1 | |
80% 1 | |
90% 1 | |
95% 1 | |
98% 2 | |
99% 2 | |
100% 2 (longest request) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 127.0.0.1 (be patient) | |
Server Software: | |
Server Hostname: 127.0.0.1 | |
Server Port: 8080 | |
Document Path: / | |
Document Length: 14 bytes | |
Concurrency Level: 20 | |
Time taken for tests: 0.024 seconds | |
Complete requests: 500 | |
Failed requests: 0 | |
Write errors: 0 | |
Total transferred: 48500 bytes | |
HTML transferred: 7000 bytes | |
Requests per second: 20938.02 [#/sec] (mean) | |
Time per request: 0.955 [ms] (mean) | |
Time per request: 0.048 [ms] (mean, across all concurrent requests) | |
Transfer rate: 1983.39 [Kbytes/sec] received | |
Connection Times (ms) | |
min mean[+/-sd] median max | |
Connect: 0 0 0.1 0 1 | |
Processing: 0 0 0.1 0 1 | |
Waiting: 0 0 0.1 0 1 | |
Total: 0 1 0.1 1 1 | |
Percentage of the requests served within a certain time (ms) | |
50% 1 | |
66% 1 | |
75% 1 | |
80% 1 | |
90% 1 | |
95% 1 | |
98% 1 | |
99% 1 | |
100% 1 (longest request) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 127.0.0.1 (be patient) | |
Server Software: | |
Server Hostname: 127.0.0.1 | |
Server Port: 8080 | |
Document Path: / | |
Document Length: 14 bytes | |
Concurrency Level: 20 | |
Time taken for tests: 0.027 seconds | |
Complete requests: 500 | |
Failed requests: 0 | |
Write errors: 0 | |
Total transferred: 48500 bytes | |
HTML transferred: 7000 bytes | |
Requests per second: 18694.38 [#/sec] (mean) | |
Time per request: 1.070 [ms] (mean) | |
Time per request: 0.053 [ms] (mean, across all concurrent requests) | |
Transfer rate: 1770.85 [Kbytes/sec] received | |
Connection Times (ms) | |
min mean[+/-sd] median max | |
Connect: 0 1 0.1 0 1 | |
Processing: 0 1 0.1 0 1 | |
Waiting: 0 1 0.1 0 1 | |
Total: 0 1 0.3 1 2 | |
ERROR: The median and mean for the initial connection time are more than twice the standard | |
deviation apart. These results are NOT reliable. | |
ERROR: The median and mean for the processing time are more than twice the standard | |
deviation apart. These results are NOT reliable. | |
ERROR: The median and mean for the waiting time are more than twice the standard | |
deviation apart. These results are NOT reliable. | |
Percentage of the requests served within a certain time (ms) | |
50% 1 | |
66% 1 | |
75% 1 | |
80% 1 | |
90% 2 | |
95% 2 | |
98% 2 | |
99% 2 | |
100% 2 (longest request) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 127.0.0.1 (be patient) | |
Server Software: | |
Server Hostname: 127.0.0.1 | |
Server Port: 8080 | |
Document Path: / | |
Document Length: 14 bytes | |
Concurrency Level: 20 | |
Time taken for tests: 0.027 seconds | |
Complete requests: 500 | |
Failed requests: 0 | |
Write errors: 0 | |
Total transferred: 48500 bytes | |
HTML transferred: 7000 bytes | |
Requests per second: 18461.08 [#/sec] (mean) | |
Time per request: 1.083 [ms] (mean) | |
Time per request: 0.054 [ms] (mean, across all concurrent requests) | |
Transfer rate: 1748.76 [Kbytes/sec] received | |
Connection Times (ms) | |
min mean[+/-sd] median max | |
Connect: 0 1 0.1 0 1 | |
Processing: 0 1 0.2 0 1 | |
Waiting: 0 1 0.1 0 1 | |
Total: 0 1 0.3 1 2 | |
ERROR: The median and mean for the initial connection time are more than twice the standard | |
deviation apart. These results are NOT reliable. | |
ERROR: The median and mean for the processing time are more than twice the standard | |
deviation apart. These results are NOT reliable. | |
ERROR: The median and mean for the waiting time are more than twice the standard | |
deviation apart. These results are NOT reliable. | |
Percentage of the requests served within a certain time (ms) | |
50% 1 | |
66% 1 | |
75% 1 | |
80% 1 | |
90% 2 | |
95% 2 | |
98% 2 | |
99% 2 | |
100% 2 (longest request) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 127.0.0.1 (be patient) | |
Server Software: | |
Server Hostname: 127.0.0.1 | |
Server Port: 8080 | |
Document Path: / | |
Document Length: 14 bytes | |
Concurrency Level: 20 | |
Time taken for tests: 0.027 seconds | |
Complete requests: 500 | |
Failed requests: 0 | |
Write errors: 0 | |
Total transferred: 48500 bytes | |
HTML transferred: 7000 bytes | |
Requests per second: 18685.30 [#/sec] (mean) | |
Time per request: 1.070 [ms] (mean) | |
Time per request: 0.054 [ms] (mean, across all concurrent requests) | |
Transfer rate: 1769.99 [Kbytes/sec] received | |
Connection Times (ms) | |
min mean[+/-sd] median max | |
Connect: 0 1 0.1 0 1 | |
Processing: 0 1 0.1 0 1 | |
Waiting: 0 1 0.1 0 1 | |
Total: 0 1 0.3 1 2 | |
ERROR: The median and mean for the initial connection time are more than twice the standard | |
deviation apart. These results are NOT reliable. | |
ERROR: The median and mean for the processing time are more than twice the standard | |
deviation apart. These results are NOT reliable. | |
ERROR: The median and mean for the waiting time are more than twice the standard | |
deviation apart. These results are NOT reliable. | |
Percentage of the requests served within a certain time (ms) | |
50% 1 | |
66% 1 | |
75% 1 | |
80% 1 | |
90% 2 | |
95% 2 | |
98% 2 | |
99% 2 | |
100% 2 (longest request) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 127.0.0.1 (be patient) | |
Server Software: | |
Server Hostname: 127.0.0.1 | |
Server Port: 8080 | |
Document Path: / | |
Document Length: 14 bytes | |
Concurrency Level: 20 | |
Time taken for tests: 0.027 seconds | |
Complete requests: 500 | |
Failed requests: 0 | |
Write errors: 0 | |
Total transferred: 48500 bytes | |
HTML transferred: 7000 bytes | |
Requests per second: 18500.02 [#/sec] (mean) | |
Time per request: 1.081 [ms] (mean) | |
Time per request: 0.054 [ms] (mean, across all concurrent requests) | |
Transfer rate: 1752.44 [Kbytes/sec] received | |
Connection Times (ms) | |
min mean[+/-sd] median max | |
Connect: 0 0 0.1 0 1 | |
Processing: 0 1 0.2 1 1 | |
Waiting: 0 1 0.2 1 1 | |
Total: 1 1 0.3 1 2 | |
Percentage of the requests served within a certain time (ms) | |
50% 1 | |
66% 1 | |
75% 1 | |
80% 1 | |
90% 1 | |
95% 2 | |
98% 2 | |
99% 2 | |
100% 2 (longest request) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 127.0.0.1 (be patient) | |
Server Software: | |
Server Hostname: 127.0.0.1 | |
Server Port: 8080 | |
Document Path: / | |
Document Length: 14 bytes | |
Concurrency Level: 20 | |
Time taken for tests: 0.037 seconds | |
Complete requests: 500 | |
Failed requests: 0 | |
Write errors: 0 | |
Total transferred: 48500 bytes | |
HTML transferred: 7000 bytes | |
Requests per second: 13505.12 [#/sec] (mean) | |
Time per request: 1.481 [ms] (mean) | |
Time per request: 0.074 [ms] (mean, across all concurrent requests) | |
Transfer rate: 1279.29 [Kbytes/sec] received | |
Connection Times (ms) | |
min mean[+/-sd] median max | |
Connect: 0 1 0.2 1 1 | |
Processing: 0 1 0.1 1 1 | |
Waiting: 0 1 0.1 1 1 | |
Total: 1 1 0.2 1 2 | |
Percentage of the requests served within a certain time (ms) | |
50% 1 | |
66% 2 | |
75% 2 | |
80% 2 | |
90% 2 | |
95% 2 | |
98% 2 | |
99% 2 | |
100% 2 (longest request) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 127.0.0.1 (be patient) | |
Server Software: | |
Server Hostname: 127.0.0.1 | |
Server Port: 8080 | |
Document Path: / | |
Document Length: 14 bytes | |
Concurrency Level: 20 | |
Time taken for tests: 0.028 seconds | |
Complete requests: 500 | |
Failed requests: 0 | |
Write errors: 0 | |
Total transferred: 48500 bytes | |
HTML transferred: 7000 bytes | |
Requests per second: 17859.06 [#/sec] (mean) | |
Time per request: 1.120 [ms] (mean) | |
Time per request: 0.056 [ms] (mean, across all concurrent requests) | |
Transfer rate: 1691.73 [Kbytes/sec] received | |
Connection Times (ms) | |
min mean[+/-sd] median max | |
Connect: 0 0 0.2 0 1 | |
Processing: 0 1 0.2 1 1 | |
Waiting: 0 1 0.2 1 1 | |
Total: 1 1 0.3 1 2 | |
Percentage of the requests served within a certain time (ms) | |
50% 1 | |
66% 1 | |
75% 1 | |
80% 1 | |
90% 2 | |
95% 2 | |
98% 2 | |
99% 2 | |
100% 2 (longest request) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 127.0.0.1 (be patient) | |
Server Software: | |
Server Hostname: 127.0.0.1 | |
Server Port: 8080 | |
Document Path: / | |
Document Length: 14 bytes | |
Concurrency Level: 20 | |
Time taken for tests: 0.033 seconds | |
Complete requests: 500 | |
Failed requests: 0 | |
Write errors: 0 | |
Total transferred: 48500 bytes | |
HTML transferred: 7000 bytes | |
Requests per second: 15096.62 [#/sec] (mean) | |
Time per request: 1.325 [ms] (mean) | |
Time per request: 0.066 [ms] (mean, across all concurrent requests) | |
Transfer rate: 1430.05 [Kbytes/sec] received | |
Connection Times (ms) | |
min mean[+/-sd] median max | |
Connect: 0 1 0.2 1 1 | |
Processing: 0 1 0.2 1 1 | |
Waiting: 0 1 0.2 1 1 | |
Total: 1 1 0.3 1 2 | |
Percentage of the requests served within a certain time (ms) | |
50% 1 | |
66% 1 | |
75% 1 | |
80% 1 | |
90% 2 | |
95% 2 | |
98% 2 | |
99% 2 | |
100% 2 (longest request) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 127.0.0.1 (be patient) | |
Server Software: | |
Server Hostname: 127.0.0.1 | |
Server Port: 8080 | |
Document Path: / | |
Document Length: 14 bytes | |
Concurrency Level: 20 | |
Time taken for tests: 0.027 seconds | |
Complete requests: 500 | |
Failed requests: 0 | |
Write errors: 0 | |
Total transferred: 48500 bytes | |
HTML transferred: 7000 bytes | |
Requests per second: 18236.20 [#/sec] (mean) | |
Time per request: 1.097 [ms] (mean) | |
Time per request: 0.055 [ms] (mean, across all concurrent requests) | |
Transfer rate: 1727.45 [Kbytes/sec] received | |
Connection Times (ms) | |
min mean[+/-sd] median max | |
Connect: 0 1 0.1 0 1 | |
Processing: 0 1 0.1 0 1 | |
Waiting: 0 1 0.1 0 1 | |
Total: 1 1 0.3 1 2 | |
ERROR: The median and mean for the initial connection time are more than twice the standard | |
deviation apart. These results are NOT reliable. | |
ERROR: The median and mean for the processing time are more than twice the standard | |
deviation apart. These results are NOT reliable. | |
ERROR: The median and mean for the waiting time are more than twice the standard | |
deviation apart. These results are NOT reliable. | |
Percentage of the requests served within a certain time (ms) | |
50% 1 | |
66% 1 | |
75% 1 | |
80% 1 | |
90% 1 | |
95% 2 | |
98% 2 | |
99% 2 | |
100% 2 (longest request) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 127.0.0.1 (be patient) | |
Server Software: | |
Server Hostname: 127.0.0.1 | |
Server Port: 8080 | |
Document Path: / | |
Document Length: 14 bytes | |
Concurrency Level: 20 | |
Time taken for tests: 0.028 seconds | |
Complete requests: 500 | |
Failed requests: 0 | |
Write errors: 0 | |
Total transferred: 48500 bytes | |
HTML transferred: 7000 bytes | |
Requests per second: 17980.44 [#/sec] (mean) | |
Time per request: 1.112 [ms] (mean) | |
Time per request: 0.056 [ms] (mean, across all concurrent requests) | |
Transfer rate: 1703.23 [Kbytes/sec] received | |
Connection Times (ms) | |
min mean[+/-sd] median max | |
Connect: 0 0 0.2 0 1 | |
Processing: 0 1 0.2 1 1 | |
Waiting: 0 1 0.2 1 1 | |
Total: 1 1 0.2 1 2 | |
Percentage of the requests served within a certain time (ms) | |
50% 1 | |
66% 1 | |
75% 1 | |
80% 1 | |
90% 1 | |
95% 1 | |
98% 2 | |
99% 2 | |
100% 2 (longest request) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 127.0.0.1 (be patient) | |
Server Software: | |
Server Hostname: 127.0.0.1 | |
Server Port: 8080 | |
Document Path: / | |
Document Length: 14 bytes | |
Concurrency Level: 20 | |
Time taken for tests: 0.031 seconds | |
Complete requests: 500 | |
Failed requests: 0 | |
Write errors: 0 | |
Total transferred: 48500 bytes | |
HTML transferred: 7000 bytes | |
Requests per second: 16324.40 [#/sec] (mean) | |
Time per request: 1.225 [ms] (mean) | |
Time per request: 0.061 [ms] (mean, across all concurrent requests) | |
Transfer rate: 1546.35 [Kbytes/sec] received | |
Connection Times (ms) | |
min mean[+/-sd] median max | |
Connect: 0 0 0.2 0 1 | |
Processing: 0 1 0.2 1 1 | |
Waiting: 0 1 0.2 1 1 | |
Total: 1 1 0.3 1 2 | |
Percentage of the requests served within a certain time (ms) | |
50% 1 | |
66% 1 | |
75% 1 | |
80% 1 | |
90% 2 | |
95% 2 | |
98% 2 | |
99% 2 | |
100% 2 (longest request) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 127.0.0.1 (be patient) | |
Server Software: | |
Server Hostname: 127.0.0.1 | |
Server Port: 8080 | |
Document Path: / | |
Document Length: 14 bytes | |
Concurrency Level: 20 | |
Time taken for tests: 0.031 seconds | |
Complete requests: 500 | |
Failed requests: 0 | |
Write errors: 0 | |
Total transferred: 48500 bytes | |
HTML transferred: 7000 bytes | |
Requests per second: 15953.03 [#/sec] (mean) | |
Time per request: 1.254 [ms] (mean) | |
Time per request: 0.063 [ms] (mean, across all concurrent requests) | |
Transfer rate: 1511.18 [Kbytes/sec] received | |
Connection Times (ms) | |
min mean[+/-sd] median max | |
Connect: 0 0 0.3 0 1 | |
Processing: 0 1 0.2 1 1 | |
Waiting: 0 1 0.2 1 1 | |
Total: 1 1 0.3 1 2 | |
Percentage of the requests served within a certain time (ms) | |
50% 1 | |
66% 1 | |
75% 1 | |
80% 1 | |
90% 2 | |
95% 2 | |
98% 2 | |
99% 2 | |
100% 2 (longest request) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 127.0.0.1 (be patient) | |
Server Software: | |
Server Hostname: 127.0.0.1 | |
Server Port: 8080 | |
Document Path: / | |
Document Length: 14 bytes | |
Concurrency Level: 20 | |
Time taken for tests: 0.030 seconds | |
Complete requests: 500 | |
Failed requests: 0 | |
Write errors: 0 | |
Total transferred: 48500 bytes | |
HTML transferred: 7000 bytes | |
Requests per second: 16822.56 [#/sec] (mean) | |
Time per request: 1.189 [ms] (mean) | |
Time per request: 0.059 [ms] (mean, across all concurrent requests) | |
Transfer rate: 1593.54 [Kbytes/sec] received | |
Connection Times (ms) | |
min mean[+/-sd] median max | |
Connect: 0 0 0.2 0 1 | |
Processing: 0 1 0.3 1 2 | |
Waiting: 0 1 0.3 1 2 | |
Total: 1 1 0.3 1 2 | |
Percentage of the requests served within a certain time (ms) | |
50% 1 | |
66% 1 | |
75% 1 | |
80% 1 | |
90% 2 | |
95% 2 | |
98% 2 | |
99% 2 | |
100% 2 (longest request) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 127.0.0.1 (be patient) | |
Server Software: | |
Server Hostname: 127.0.0.1 | |
Server Port: 8080 | |
Document Path: / | |
Document Length: 14 bytes | |
Concurrency Level: 20 | |
Time taken for tests: 0.028 seconds | |
Complete requests: 500 | |
Failed requests: 0 | |
Write errors: 0 | |
Total transferred: 48500 bytes | |
HTML transferred: 7000 bytes | |
Requests per second: 18079.26 [#/sec] (mean) | |
Time per request: 1.106 [ms] (mean) | |
Time per request: 0.055 [ms] (mean, across all concurrent requests) | |
Transfer rate: 1712.59 [Kbytes/sec] received | |
Connection Times (ms) | |
min mean[+/-sd] median max | |
Connect: 0 0 0.2 0 1 | |
Processing: 0 1 0.2 1 1 | |
Waiting: 0 1 0.2 1 1 | |
Total: 1 1 0.2 1 2 | |
Percentage of the requests served within a certain time (ms) | |
50% 1 | |
66% 1 | |
75% 1 | |
80% 1 | |
90% 1 | |
95% 1 | |
98% 2 | |
99% 2 | |
100% 2 (longest request) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 127.0.0.1 (be patient) | |
Server Software: | |
Server Hostname: 127.0.0.1 | |
Server Port: 8080 | |
Document Path: / | |
Document Length: 14 bytes | |
Concurrency Level: 20 | |
Time taken for tests: 0.025 seconds | |
Complete requests: 500 | |
Failed requests: 0 | |
Write errors: 0 | |
Total transferred: 48500 bytes | |
HTML transferred: 7000 bytes | |
Requests per second: 19675.74 [#/sec] (mean) | |
Time per request: 1.016 [ms] (mean) | |
Time per request: 0.051 [ms] (mean, across all concurrent requests) | |
Transfer rate: 1863.82 [Kbytes/sec] received | |
Connection Times (ms) | |
min mean[+/-sd] median max | |
Connect: 0 0 0.1 0 1 | |
Processing: 0 1 0.2 0 1 | |
Waiting: 0 0 0.1 0 1 | |
Total: 0 1 0.2 1 2 | |
ERROR: The median and mean for the processing time are more than twice the standard | |
deviation apart. These results are NOT reliable. | |
Percentage of the requests served within a certain time (ms) | |
50% 1 | |
66% 1 | |
75% 1 | |
80% 1 | |
90% 1 | |
95% 2 | |
98% 2 | |
99% 2 | |
100% 2 (longest request) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 127.0.0.1 (be patient) | |
Server Software: | |
Server Hostname: 127.0.0.1 | |
Server Port: 8080 | |
Document Path: / | |
Document Length: 14 bytes | |
Concurrency Level: 20 | |
Time taken for tests: 0.025 seconds | |
Complete requests: 500 | |
Failed requests: 0 | |
Write errors: 0 | |
Total transferred: 48500 bytes | |
HTML transferred: 7000 bytes | |
Requests per second: 20259.32 [#/sec] (mean) | |
Time per request: 0.987 [ms] (mean) | |
Time per request: 0.049 [ms] (mean, across all concurrent requests) | |
Transfer rate: 1919.10 [Kbytes/sec] received | |
Connection Times (ms) | |
min mean[+/-sd] median max | |
Connect: 0 0 0.1 0 1 | |
Processing: 0 0 0.1 0 1 | |
Waiting: 0 0 0.1 0 1 | |
Total: 0 1 0.2 1 2 | |
Percentage of the requests served within a certain time (ms) | |
50% 1 | |
66% 1 | |
75% 1 | |
80% 1 | |
90% 1 | |
95% 1 | |
98% 1 | |
99% 2 | |
100% 2 (longest request) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 127.0.0.1 (be patient) | |
Server Software: | |
Server Hostname: 127.0.0.1 | |
Server Port: 8080 | |
Document Path: / | |
Document Length: 14 bytes | |
Concurrency Level: 20 | |
Time taken for tests: 0.033 seconds | |
Complete requests: 500 | |
Failed requests: 0 | |
Write errors: 0 | |
Total transferred: 48500 bytes | |
HTML transferred: 7000 bytes | |
Requests per second: 15141.42 [#/sec] (mean) | |
Time per request: 1.321 [ms] (mean) | |
Time per request: 0.066 [ms] (mean, across all concurrent requests) | |
Transfer rate: 1434.29 [Kbytes/sec] received | |
Connection Times (ms) | |
min mean[+/-sd] median max | |
Connect: 0 0 0.2 0 1 | |
Processing: 0 1 0.5 1 3 | |
Waiting: 0 0 0.2 0 1 | |
Total: 0 1 0.5 1 3 | |
Percentage of the requests served within a certain time (ms) | |
50% 1 | |
66% 1 | |
75% 2 | |
80% 2 | |
90% 2 | |
95% 2 | |
98% 3 | |
99% 3 | |
100% 3 (longest request) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 127.0.0.1 (be patient) | |
Server Software: | |
Server Hostname: 127.0.0.1 | |
Server Port: 8080 | |
Document Path: / | |
Document Length: 14 bytes | |
Concurrency Level: 20 | |
Time taken for tests: 0.025 seconds | |
Complete requests: 500 | |
Failed requests: 0 | |
Write errors: 0 | |
Total transferred: 48500 bytes | |
HTML transferred: 7000 bytes | |
Requests per second: 19673.42 [#/sec] (mean) | |
Time per request: 1.017 [ms] (mean) | |
Time per request: 0.051 [ms] (mean, across all concurrent requests) | |
Transfer rate: 1863.60 [Kbytes/sec] received | |
Connection Times (ms) | |
min mean[+/-sd] median max | |
Connect: 0 0 0.1 0 1 | |
Processing: 0 1 0.1 0 1 | |
Waiting: 0 0 0.1 0 1 | |
Total: 1 1 0.2 1 2 | |
ERROR: The median and mean for the processing time are more than twice the standard | |
deviation apart. These results are NOT reliable. | |
Percentage of the requests served within a certain time (ms) | |
50% 1 | |
66% 1 | |
75% 1 | |
80% 1 | |
90% 1 | |
95% 1 | |
98% 1 | |
99% 2 | |
100% 2 (longest request) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 127.0.0.1 (be patient) | |
Server Software: | |
Server Hostname: 127.0.0.1 | |
Server Port: 8080 | |
Document Path: / | |
Document Length: 14 bytes | |
Concurrency Level: 20 | |
Time taken for tests: 0.032 seconds | |
Complete requests: 500 | |
Failed requests: 0 | |
Write errors: 0 | |
Total transferred: 48500 bytes | |
HTML transferred: 7000 bytes | |
Requests per second: 15478.92 [#/sec] (mean) | |
Time per request: 1.292 [ms] (mean) | |
Time per request: 0.065 [ms] (mean, across all concurrent requests) | |
Transfer rate: 1466.26 [Kbytes/sec] received | |
Connection Times (ms) | |
min mean[+/-sd] median max | |
Connect: 0 1 0.2 1 1 | |
Processing: 0 1 0.3 1 2 | |
Waiting: 0 1 0.2 1 1 | |
Total: 0 1 0.4 1 3 | |
Percentage of the requests served within a certain time (ms) | |
50% 1 | |
66% 1 | |
75% 2 | |
80% 2 | |
90% 2 | |
95% 2 | |
98% 2 | |
99% 2 | |
100% 3 (longest request) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 127.0.0.1 (be patient) | |
Server Software: | |
Server Hostname: 127.0.0.1 | |
Server Port: 8080 | |
Document Path: / | |
Document Length: 14 bytes | |
Concurrency Level: 20 | |
Time taken for tests: 0.024 seconds | |
Complete requests: 500 | |
Failed requests: 0 | |
Write errors: 0 | |
Total transferred: 48500 bytes | |
HTML transferred: 7000 bytes | |
Requests per second: 20835.07 [#/sec] (mean) | |
Time per request: 0.960 [ms] (mean) | |
Time per request: 0.048 [ms] (mean, across all concurrent requests) | |
Transfer rate: 1973.63 [Kbytes/sec] received | |
Connection Times (ms) | |
min mean[+/-sd] median max | |
Connect: 0 0 0.1 0 1 | |
Processing: 0 0 0.2 0 1 | |
Waiting: 0 0 0.1 0 1 | |
Total: 0 1 0.2 1 2 | |
Percentage of the requests served within a certain time (ms) | |
50% 1 | |
66% 1 | |
75% 1 | |
80% 1 | |
90% 1 | |
95% 1 | |
98% 1 | |
99% 2 | |
100% 2 (longest request) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 127.0.0.1 (be patient) | |
Server Software: | |
Server Hostname: 127.0.0.1 | |
Server Port: 8080 | |
Document Path: / | |
Document Length: 14 bytes | |
Concurrency Level: 20 | |
Time taken for tests: 0.025 seconds | |
Complete requests: 500 | |
Failed requests: 0 | |
Write errors: 0 | |
Total transferred: 48500 bytes | |
HTML transferred: 7000 bytes | |
Requests per second: 19977.63 [#/sec] (mean) | |
Time per request: 1.001 [ms] (mean) | |
Time per request: 0.050 [ms] (mean, across all concurrent requests) | |
Transfer rate: 1892.41 [Kbytes/sec] received | |
Connection Times (ms) | |
min mean[+/-sd] median max | |
Connect: 0 0 0.1 0 1 | |
Processing: 0 1 0.2 0 2 | |
Waiting: 0 0 0.1 0 1 | |
Total: 0 1 0.3 1 2 | |
ERROR: The median and mean for the processing time are more than twice the standard | |
deviation apart. These results are NOT reliable. | |
Percentage of the requests served within a certain time (ms) | |
50% 1 | |
66% 1 | |
75% 1 | |
80% 1 | |
90% 1 | |
95% 2 | |
98% 2 | |
99% 2 | |
100% 2 (longest request) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 127.0.0.1 (be patient) | |
Server Software: | |
Server Hostname: 127.0.0.1 | |
Server Port: 8080 | |
Document Path: / | |
Document Length: 14 bytes | |
Concurrency Level: 20 | |
Time taken for tests: 0.024 seconds | |
Complete requests: 500 | |
Failed requests: 0 | |
Write errors: 0 | |
Total transferred: 48500 bytes | |
HTML transferred: 7000 bytes | |
Requests per second: 20815.12 [#/sec] (mean) | |
Time per request: 0.961 [ms] (mean) | |
Time per request: 0.048 [ms] (mean, across all concurrent requests) | |
Transfer rate: 1971.74 [Kbytes/sec] received | |
Connection Times (ms) | |
min mean[+/-sd] median max | |
Connect: 0 0 0.0 0 1 | |
Processing: 0 0 0.1 0 1 | |
Waiting: 0 0 0.1 0 1 | |
Total: 1 1 0.1 1 1 | |
Percentage of the requests served within a certain time (ms) | |
50% 1 | |
66% 1 | |
75% 1 | |
80% 1 | |
90% 1 | |
95% 1 | |
98% 1 | |
99% 1 | |
100% 1 (longest request) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 127.0.0.1 (be patient) | |
Server Software: | |
Server Hostname: 127.0.0.1 | |
Server Port: 8080 | |
Document Path: / | |
Document Length: 14 bytes | |
Concurrency Level: 20 | |
Time taken for tests: 0.025 seconds | |
Complete requests: 500 | |
Failed requests: 0 | |
Write errors: 0 | |
Total transferred: 48500 bytes | |
HTML transferred: 7000 bytes | |
Requests per second: 20279.04 [#/sec] (mean) | |
Time per request: 0.986 [ms] (mean) | |
Time per request: 0.049 [ms] (mean, across all concurrent requests) | |
Transfer rate: 1920.96 [Kbytes/sec] received | |
Connection Times (ms) | |
min mean[+/-sd] median max | |
Connect: 0 0 0.1 0 1 | |
Processing: 0 0 0.1 0 1 | |
Waiting: 0 0 0.1 0 1 | |
Total: 1 1 0.1 1 2 | |
Percentage of the requests served within a certain time (ms) | |
50% 1 | |
66% 1 | |
75% 1 | |
80% 1 | |
90% 1 | |
95% 1 | |
98% 1 | |
99% 1 | |
100% 2 (longest request) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 127.0.0.1 (be patient) | |
Server Software: | |
Server Hostname: 127.0.0.1 | |
Server Port: 8080 | |
Document Path: / | |
Document Length: 14 bytes | |
Concurrency Level: 20 | |
Time taken for tests: 0.023 seconds | |
Complete requests: 500 | |
Failed requests: 0 | |
Write errors: 0 | |
Total transferred: 48500 bytes | |
HTML transferred: 7000 bytes | |
Requests per second: 21315.60 [#/sec] (mean) | |
Time per request: 0.938 [ms] (mean) | |
Time per request: 0.047 [ms] (mean, across all concurrent requests) | |
Transfer rate: 2019.15 [Kbytes/sec] received | |
Connection Times (ms) | |
min mean[+/-sd] median max | |
Connect: 0 0 0.1 0 1 | |
Processing: 0 0 0.2 0 2 | |
Waiting: 0 0 0.1 0 1 | |
Total: 0 1 0.2 1 2 | |
Percentage of the requests served within a certain time (ms) | |
50% 1 | |
66% 1 | |
75% 1 | |
80% 1 | |
90% 1 | |
95% 1 | |
98% 2 | |
99% 2 | |
99% 2 | |
100% 2 (longest request) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local lev = require('lev') | |
local RES_BUFFER = Buffer:new("HTTP/1.0 200 OK\r\nConnection: Close\r\nContent-Type: text/html\r\nContent-Length: 14\r\n\r\nHello World\n\r\n") | |
local client__on_read = function(c, nread, buf) | |
-- we do not have to worry about closing our client here... | |
-- that is taken care of automatically! for events, register with client:on_close() | |
c:write( RES_BUFFER ) | |
c:close() | |
end | |
local server = lev.tcp.new() | |
server:bind("0.0.0.0", 8080) | |
server:listen(function(s, err) | |
local client = s:accept() | |
client:read_start(client__on_read) | |
end) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
start-up http-bench | |
lev: about 2.0 MB about 2.3 MB | |
luvit: about 2.6 MB about 4.5 MB | |
node: about 11.0 MB about 17.7 MB |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment