| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 8264328 commit 290df5a
1 file changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1196,7 +1196,13 @@ Will generate: | |||
| 1196 | 1196 | ||
| 1197 | 1197 | `heapTotal` and `heapUsed` refer to V8's memory usage. | |
| 1198 | 1198 | `external` refers to the memory usage of C++ objects bound to JavaScript | |
| 1199 | - objects managed by V8. | ||
| 1199 | + objects managed by V8. `rss`, Resident Set Size, is the amount of space | ||
| 1200 | + occupied in the main memory device (that is a subset of the total allocated | ||
| 1201 | + memory) for the process, which includes the _heap_, _code segment_ and _stack_. | ||
| 1202 | + | ||
| 1203 | + The _heap_ is where objects, strings and closures are stored. Variables are | ||
| 1204 | + stored in the _stack_ and the actual JavaScript code resides in the | ||
| 1205 | + _code segment_. | ||
| 1200 | 1206 | ||
| 1201 | 1207 | ## process.nextTick(callback[, ...args]) | |
| 1202 | 1208 | <!-- YAML | |
| Back | FazBrowse Home | New Git URL |
0 commit comments