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
454 B
23 lines
454 B
'use strict';
|
|
|
|
var common = require('../common.js');
|
|
var ClientRequest = require('http').ClientRequest;
|
|
|
|
var bench = common.createBenchmark(main, {
|
|
len: [1, 8, 16, 32, 64, 128],
|
|
n: [1e6]
|
|
});
|
|
|
|
function main(conf) {
|
|
var len = +conf.len;
|
|
var n = +conf.n;
|
|
|
|
var path = '/'.repeat(len);
|
|
var opts = { path: path, createConnection: function() {} };
|
|
|
|
bench.start();
|
|
for (var i = 0; i < n; i++) {
|
|
new ClientRequest(opts);
|
|
}
|
|
bench.end(n);
|
|
}
|
|
|