0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-30 15:30:56 +01:00
nodejs/benchmark/static_http_server.js

43 lines
775 B
JavaScript
Raw Normal View History

'use strict';
var http = require('http');
2010-03-09 04:06:25 +01:00
var concurrency = 30;
2010-03-23 02:47:04 +01:00
var port = 12346;
var n = 700;
var bytes = 1024 * 5;
var requests = 0;
var responses = 0;
var body = 'C'.repeat(bytes);
var server = http.createServer(function(req, res) {
2010-02-25 21:54:48 +01:00
res.writeHead(200, {
'Content-Type': 'text/plain',
'Content-Length': body.length
});
res.end(body);
});
server.listen(port, function() {
var agent = new http.Agent();
agent.maxSockets = concurrency;
for (var i = 0; i < n; i++) {
var req = http.get({
port: port,
path: '/',
agent: agent
}, function(res) {
res.resume();
res.on('end', function() {
if (++responses === n) {
server.close();
}
});
});
req.id = i;
requests++;
}
});