interface Deno.SystemMemoryInfo
Information returned from a call to Deno.systemMemoryInfo
.
Properties Jump to heading
Jump to headingtotal: number
Total installed memory in bytes.
Jump to headingfree: number
Unused memory in bytes.
Jump to headingavailable: number
Estimation of how much memory, in bytes, is available for starting new applications, without swapping. Unlike the data provided by the cache or free fields, this field takes into account page cache and also that not all reclaimable memory will be reclaimed due to items being in use.
Jump to headingbuffers: number
Memory used by kernel buffers.
Jump to headingcached: number
Memory used by the page cache and slabs.
Jump to headingswapTotal: number
Total swap memory.
Jump to headingswapFree: number
Unused swap memory.