interface Deno.SystemMemoryInfo
Information returned from a call to Deno.systemMemoryInfo.
Properties Jump to heading
Jump to headingtotal: numberTotal installed memory in bytes.
Jump to headingfree: numberUnused memory in bytes.
Jump to headingavailable: numberEstimation 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: numberMemory used by kernel buffers.
Jump to headingcached: numberMemory used by the page cache and slabs.
Jump to headingswapTotal: numberTotal swap memory.
Jump to headingswapFree: numberUnused swap memory.