mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
596 B
23 lines
596 B
var common = require('../common.js');
|
|
var PORT = common.PORT;
|
|
|
|
var bench = common.createBenchmark(main, {
|
|
// unicode confuses ab on os x.
|
|
type: ['bytes', 'buffer'],
|
|
length: [4, 1024, 102400],
|
|
c: [50, 500]
|
|
});
|
|
|
|
function main(conf) {
|
|
process.env.PORT = PORT;
|
|
var spawn = require('child_process').spawn;
|
|
var server = require('../http_simple.js');
|
|
setTimeout(function() {
|
|
var path = '/' + conf.type + '/' + conf.length; //+ '/' + conf.chunks;
|
|
var args = ['-r', 5000, '-t', 8, '-c', conf.c];
|
|
|
|
bench.http(path, args, function() {
|
|
server.close();
|
|
});
|
|
}, 2000);
|
|
}
|
|
|