process.memoryUsage()方法是进程模块的内置方法,提供有关Node.js程序的当前进程或运行时的信息。内存使用情况方法返回一个对象,该对象以Node.js进程的字节数描述内存使用情况。
用法:
process.memoryUsage()
参数:此方法不接受任何参数:
返回值:此方法返回一个带有内存使用说明的对象。
以下示例说明了Node.js中process.memoryUsage()方法的使用。
范例1:
index.js
// Requiring module
var process = require('process')
// Prints the output as an object
console.log(process.memoryUsage())
使用以下命令运行index.js文件:
node index.js
输出:
{ rss:23851008, heapTotal:4907008, heapUsed:2905912, external:951886, arrayBuffers:17574 }
范例2:
index.js
// Requiring module
var process = require('process')
// An example displaying the respective memory
// usages in megabytes(MB)
for (const [key,value] of Object.entries(process.memoryUsage())){
console.log(`Memory usage by ${key}, ${value/1000000}MB `)
}
使用以下命令运行index.js文件:
node index.js
输出:
Memory usage by rss, 23.87968MB Memory usage by heapTotal, 4.907008MB Memory usage by heapUsed, 2.907088MB Memory usage by external, 0.951886MB Memory usage by arrayBuffers, 0.017574MB
参考:https://nodejs.org/api/process.html#process_process_memoryusage
相关用法
- Node.js console.timeLog()用法及代码示例
- Node.js x509.toLegacyObject()用法及代码示例
- Node.js fs.fsyncSync()用法及代码示例
- Node.js process.nextTick()用法及代码示例
- Node.js GM charcoal()用法及代码示例
- Node.js GM blur()用法及代码示例
注:本文由纯净天空筛选整理自gouravhammad大神的英文原创作品 Node.js process.memoryUsage() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。