【发布时间】:2020-01-03 12:02:53
【问题描述】:
从文档中,v8.getHeapSpaceStatistics() 返回类似这样的内容,
[
{
"space_name": "new_space",
"space_size": 2063872,
"space_used_size": 951112,
"space_available_size": 80824,
"physical_space_size": 2063872
},
...
]
{
total_heap_size: 7326976,
total_heap_size_executable: 4194304,
total_physical_size: 7326976,
total_available_size: 1152656,
used_heap_size: 3476208,
heap_size_limit: 1535115264,
malloced_memory: 16384,
peak_malloced_memory: 1127496,
does_zap_garbage: 0,
number_of_native_contexts: 1,
number_of_detached_contexts: 0
}
有人能解释一下这些键和空格的实际含义吗?
【问题讨论】:
标签: javascript node.js v8