Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法随时知道 Node.js 进程的 CPU 时间?我需要它来评估我生成的一些 Node.js 进程的 CPU 时间消耗。
谢谢。
我不是很了解你需要什么,但如果我理解你的话,我认为你应该看看process.hrtime()方法,它会给你两个调用之间的差异,这里是文档的链接。基本上,您必须在流程开始时调用它,然后在您想要进行差异时以函数的结果作为参数再次调用它。
process.hrtime()