このために設計された方法があります。process.hrtime();を確認してください。。
したがって、基本的にはこれをアプリの一番上に配置します。
var start = process.hrtime();
var elapsed_time = function(note){
var precision = 3; // 3 decimal places
var elapsed = process.hrtime(start)[1] / 1000000; // divide by a million to get nano to milli
console.log(process.hrtime(start)[0] + " s, " + elapsed.toFixed(precision) + " ms - " + note); // print message + time
start = process.hrtime(); // reset the timer
}
次に、それを使用して、関数にかかる時間を確認します。次に、「output.txt」というテキストファイルの内容を出力する基本的な例を示します。
var debug = true;
http.createServer(function(request, response) {
if(debug) console.log("----------------------------------");
if(debug) elapsed_time("recieved request");
var send_html = function(err, contents) {
if(debug) elapsed_time("start send_html()");
response.writeHead(200, {'Content-Type': 'text/html' } );
response.end(contents);
if(debug) elapsed_time("end send_html()");
}
if(debug) elapsed_time("start readFile()");
fs.readFile('output.txt', send_html);
if(debug) elapsed_time("end readFile()");
}).listen(8080);
ターミナル(BASHシェル)で実行できる簡単なテストを次に示します。
for i in {1..100}; do echo $i; curl http://localhost:8080/; done