Il y a une méthode qui est conçu pour cela. Découvrez processus.hrtime(); .
Donc, en gros, j'ai mis en haut de mon application.
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
}
Puis-je l'utiliser pour voir combien de temps prise de fonctions. Voici un exemple de base qui imprime le contenu d'un fichier texte appelé "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);
Voici un petit test que vous pouvez exécuter dans un terminal (shell BASH):
for i in {1..100}; do echo $i; curl http://localhost:8080/; done