我们可以从node.js的进程对象获取内存使用情况。如果我在启动node.js应用程序时设置了--max-old-space-size,它会反映到进程内存使用情况吗?在哪个进程对象的变量中我可以得到我在argv中给出的最大旧空间?
答案 0 :(得分:2)
您可以使用process.memoryUsage()
进行打印。答复将是:
rss: Resident Set Size, it is the total memory allocated for the process execution
heapTotal: is the total size of the allocated heap
heapUsed: is the actual memory used during the execution of the process