0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-30 07:27:22 +01:00
nodejs/benchmark/static_http_server.js
Ryan ad9d683f9f API: rename node.Process to node.ChildProcess
This is to avoid confusion with the global "process" object, especially for
the instances of node.Process.
2009-08-26 22:36:45 +02:00

43 lines
803 B
JavaScript

var concurrency = 30;
var port = 8000;
var n = 700;
var bytes = 1024*5;
var requests = 0;
var responses = 0;
var body = "";
for (var i = 0; i < bytes; i++) {
body += "C";
}
var server = node.http.createServer(function (req, res) {
res.sendHeader(200, {
"Content-Type": "text/plain",
"Content-Length": body.length
});
res.sendBody(body);
res.finish();
})
server.listen(port);
function responseListener (res) {
res.addListener("complete", function () {
if (requests < n) {
res.client.get("/").finish(responseListener);
requests++;
}
if (++responses == n) {
server.close();
}
});
}
for (var i = 0; i < concurrency; i++) {
var client = node.http.createClient(port);
client.id = i;
client.get("/").finish(responseListener);
requests++;
}