Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Deno.SystemMemoryInfo

interface SystemMemoryInfo {
available: number;
buffers: number;
cached: number;
free: number;
swapFree: number;
swapTotal: number;
total: number;
}

§Properties

§
available: number
[src]

Estimation of how much memory 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 slabs will be reclaimed due to items being in use

§
buffers: number
[src]

Memory used by kernel buffers

§
cached: number
[src]

Memory used by the page cache and slabs

§
free: number
[src]

Unused memory

§
swapFree: number
[src]

Unused swap memory

§
swapTotal: number
[src]

Total swap memory

§
total: number
[src]

Total installed memory