mirror of
https://github.com/nodejs/node.git
synced 2024-11-30 07:27:22 +01:00
3e3414f45f
PR-URL: https://github.com/nodejs/node/pull/12121 Refs: https://github.com/nodejs/node/issues/12068 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
30 lines
744 B
JavaScript
30 lines
744 B
JavaScript
'use strict';
|
|
var common = require('../common.js');
|
|
var PORT = common.PORT;
|
|
|
|
var bench = common.createBenchmark(main, {
|
|
// unicode confuses ab on os x.
|
|
type: ['bytes', 'buffer'],
|
|
len: [4, 1024, 102400],
|
|
chunks: [0, 1, 4], // chunks=0 means 'no chunked encoding'.
|
|
c: [50, 500],
|
|
res: ['normal', 'setHeader', 'setHeaderWH']
|
|
});
|
|
|
|
function main(conf) {
|
|
process.env.PORT = PORT;
|
|
var server = require('../fixtures/simple-http-server.js')
|
|
.listen(process.env.PORT || common.PORT)
|
|
.on('listening', function() {
|
|
var path = '/' + conf.type + '/' + conf.len + '/' + conf.chunks + '/' +
|
|
conf.res;
|
|
|
|
bench.http({
|
|
path: path,
|
|
connections: conf.c
|
|
}, function() {
|
|
server.close();
|
|
});
|
|
});
|
|
}
|