gpt4 book ai didi

node.js - 如何使用 process.hrtime 获取异步函数的执行时间

转载 作者:IT老高 更新时间:2023-10-28 23:01:03 28 4
gpt4 key购买 nike

我正在尝试获取异步函数的执行时间。貌似可以用process.hrtime为了这。我创建了一个简单的例子:

console.log("starting");
var start = process.hrtime();
console.log("start");
console.log(start);

setTimeout(function(){
console.log("HELLO");
var end = process.hrtime();
console.log("end");
console.log(end);
}, 1000);

输出

starting
start
[ 131806, 731009597 ]
HELLO
end
[ 131807, 738212296 ]

但我不明白以毫秒为单位的执行时间在哪里?在这个例子中,我希望得到 1000 毫秒。

最佳答案

知道了:

console.log("starting");
var start = process.hrtime();
console.log("start");
console.log(start);

setTimeout(function(){
console.log("HELLO");
var end = process.hrtime(start);
console.log("end");
console.log(end);
}, 1000);

打印

starting
start
[ 132798, 207101051 ]
HELLO
end
[ 1, 7001730 ]

这意味着从开始到结束需要 1 秒和 7001730 纳秒

关于node.js - 如何使用 process.hrtime 获取异步函数的执行时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18031839/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com