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
470 B

'use strict';
var common = require('../common.js');
var ClientRequest = require('http').ClientRequest;
var bench = common.createBenchmark(main, {
pathlen: [1, 8, 16, 32, 64, 128],
n: [1e6]
});
function main(conf) {
var pathlen = +conf.pathlen;
var n = +conf.n;
var path = '/'.repeat(pathlen);
var opts = { path: path, createConnection: function() {} };
bench.start();
for (var i = 0; i < n; i++) {
new ClientRequest(opts);
}
bench.end(n);
}