で超基本的なhttpリクエストアプリをやっていnode.js
ます。
var http = require('http');
var options = {
host: 'www.domain-here.com',
port: 80,
path: '/index.html'
};
for(var i = 0; i < 500; i++) {
http.get(options, function(res) {
console.log("[" + this.count + "] Response: " + res.statusCode);
}.bind({ count: i })).on('error', function(e) {
console.log("[" + this.count + "] Error: " + e.message);
}.bind({ count: i }));
}
ただし、1 秒あたりの http リクエストの数を取得する必要があります。毎秒リクエストを取得する方法はありますか?