Skip to main content

10 docs tagged with "Heap"

View All Tags

Garbage-Collection

Garbage-Collection is defined as: 🧹Algorithm (in JS Engine) to remove old unused Object from Heap Memory. Topics on: Memory Leak, Garbage-Collection is impleme

Heap

Heap is defined as: unstructured memory pool to store all Object for app. Topics on: the Heap stores all reference types (objects), Heap is main shared memory o

Heap Space

Heap Space is defined as: V8 organize Heap into Memory Page regions to work with Garbage-Collection. Topics on: Memory Page, New-space, Old-pointer-space, Old-d

JS Engine

JS Engine is defined as: Program to execute JS Source Code, consists of Call Stack, Heap, Callback Queue & Event Loop. Topics on: Browser Vendor Engines, Call S

Large-object-space

Large-object-space is defined as: Heap Space to contain large objects above size limits of other Heap Space. Each object assign mmap'd region of memory. Large o

Memory Leak

Memory Leak is defined as: old Values clogging up Heap; left behind, not removed. Topics on: Garbage-Collection is required to prevent memory leaks, leak exampl

Memory Page

Memory Page is defined as: Virtual Memory Block, fixed-length contigious, ref by Page Table. Topics on: . Read more: JS, JS Concepts, JS Engine, Heap, Heap Spac

New-space

New-space is defined as: Small Heap Space to contain most objects, independent of other Heap Space, for fast Garbage-Collection. Topics on: . Read more: JS, JS

Object Reference

Object Reference is defined as: Link to Object as Memory Address pointer to Heap location. Topics on: . Read more: JS, JS Language, Object, Object Reference, Me

Reference Reassignment

Reference Reassignment is defined as: New Identifier created 👉 same value to ref Heap Memory Address (where actual Object store in Heap). Topics on: Referentia