gpt4 book ai didi

javascript - 在 node.js 中,为什么第二次调用函数比第一次花费的时间少得多?

转载 作者:行者123 更新时间:2023-12-04 08:40:53 25 4
gpt4 key购买 nike

const {performance} = require('perf_hooks');

const nemo = ['nemo'];

function findNemoArray(array) {
let t0 = performance.now();
for (let i = 0; i < array.length; ++i) {
if (array[i] === 'nemo') {
console.log("Found nemo")
}
}
let t1 = performance.now();
console.log("Call to find nemo took", t1-t0, "milliseconds");
}

findNemoArray(nemo);
findNemoArray(nemo);
输出:
$ node findNemo.js
Found nemo
Call to find nemo took 6.692564999684691 milliseconds
Found nemo
Call to find nemo took 0.09663600008934736 milliseconds
我不明白为什么第二个电话比第一个电话花费的时间少得多?

最佳答案

这是一个v8引擎优化。
您可以深入阅读 the v8 profilingIgnition and Turboban管道(当然也被 Nodejs 使用)

node --prof yourScript.js
# it will produce a log file that you can read by
node --prof-process isolate-00000221B52EB170-26268-v8.log > readable.txt

关于javascript - 在 node.js 中,为什么第二次调用函数比第一次花费的时间少得多?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64571553/

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