ecr-viewer
    Preparing search index...

    Interface MemoryUsageFn

    interface MemoryUsageFn {
        rss(): number;
        (): MemoryUsage;
    }
    • The process.memoryUsage() method iterate over each page to gather informations about memory usage which can be slow depending on the program memory allocations.

      Returns MemoryUsage

    Index

    Methods

    Methods

    • method returns an integer representing the Resident Set Size (RSS) in bytes.

      Returns number