Node.js process.memoryUsage() 方法

Node.js process.memoryUsage() 方法

process.memoryUsage() 方法是 process 模块的内置方法,用于提供有关 Node.js 程序的当前进程或运行时的信息。memoryUsage 方法返回一个描述 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

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程