@@ -1482,6 +1482,9 @@ is no entry script.
1482
1482
<!-- YAML
1483
1483
added: v0.1.16
1484
1484
changes:
1485
+ - version: REPLACEME
1486
+ pr-url: https://github.com/nodejs/node/pull/31550
1487
+ description: Added `arrayBuffers` to the returned object.
1485
1488
- version: v7.2.0
1486
1489
pr-url: https://github.com/nodejs/node/pull/9587
1487
1490
description: Added `external` to the returned object.
@@ -1492,6 +1495,7 @@ changes:
1492
1495
* ` heapTotal ` {integer}
1493
1496
* ` heapUsed ` {integer}
1494
1497
* ` external ` {integer}
1498
+ * ` arrayBuffers ` {integer}
1495
1499
1496
1500
The ` process.memoryUsage() ` method returns an object describing the memory usage
1497
1501
of the Node.js process measured in bytes.
@@ -1510,19 +1514,22 @@ Will generate:
1510
1514
rss: 4935680 ,
1511
1515
heapTotal: 1826816 ,
1512
1516
heapUsed: 650472 ,
1513
- external: 49879
1517
+ external: 49879 ,
1518
+ arrayBuffers: 9386
1514
1519
}
1515
1520
```
1516
1521
1517
- ` heapTotal ` and ` heapUsed ` refer to V8's memory usage.
1518
- ` external ` refers to the memory usage of C++ objects bound to JavaScript
1519
- objects managed by V8. ` rss ` , Resident Set Size, is the amount of space
1520
- occupied in the main memory device (that is a subset of the total allocated
1521
- memory) for the process, which includes the _ heap_ , _ code segment_ and _ stack_ .
1522
-
1523
- The _ heap_ is where objects, strings, and closures are stored. Variables are
1524
- stored in the _ stack_ and the actual JavaScript code resides in the
1525
- _ code segment_ .
1522
+ * ` heapTotal ` and ` heapUsed ` refer to V8's memory usage.
1523
+ * ` external ` refers to the memory usage of C++ objects bound to JavaScript
1524
+ objects managed by V8.
1525
+ * ` rss ` , Resident Set Size, is the amount of space occupied in the main
1526
+ memory device (that is a subset of the total allocated memory) for the
1527
+ process, including all C++ and JavaScript objects and code.
1528
+ * ` arrayBuffers ` refers to memory allocated for ` ArrayBuffer ` s and
1529
+ ` SharedArrayBuffer ` s, including all Node.js [ ` Buffer ` ] [ ] s.
1530
+ This is also included in the ` external ` value. When Node.js is used as an
1531
+ embedded library, this value may be ` 0 ` because allocations for ` ArrayBuffer ` s
1532
+ may not be tracked in that case.
1526
1533
1527
1534
When using [ ` Worker ` ] [ ] threads, ` rss ` will be a value that is valid for the
1528
1535
entire process, while the other fields will only refer to the current thread.
@@ -2490,6 +2497,7 @@ cases:
2490
2497
[ `'exit'` ] : #process_event_exit
2491
2498
[ `'message'` ] : child_process.html#child_process_event_message
2492
2499
[ `'uncaughtException'` ] : #process_event_uncaughtexception
2500
+ [ `Buffer` ] : buffer.html
2493
2501
[ `ChildProcess.disconnect()` ] : child_process.html#child_process_subprocess_disconnect
2494
2502
[ `ChildProcess.send()` ] : child_process.html#child_process_subprocess_send_message_sendhandle_options_callback
2495
2503
[ `ChildProcess` ] : child_process.html#child_process_class_childprocess
0 commit comments