當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Node.js process.memoryUsage()用法及代碼示例


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

相關用法


注:本文由純淨天空篩選整理自gouravhammad大神的英文原創作品 Node.js process.memoryUsage() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。