Memory

Memory Tool 🧠

The Memory tool in DevTools helps you understand memory usage and find memory leaks in your web applications. It provides insights into how memory is allocated and retained, allowing you to optimize your application's performance. (Because nobody wants their app to have the memory of a goldfish! 🐠)

Before we dive in the Memory tool 🀿

OS Task Manager βš™οΈ

Browser Task Manager βš™οΈ

Open the Browser Task Manager (Shift + Esc)

These two columns tell you different things about how your page is using memory:

Where are DOM Elements Stored? 🏠

DOM elements are not allocated directly within the JavaScript heap. Instead, they reside in a separate memory space managed by the browser's rendering engine, often referred to as "native memory" or "object graph memory." This distinction arises because DOM elements are not purely JavaScript objects; they are part of the browser's internal representation of the web page.

While DOM elements themselves are not in the JavaScript heap, JavaScript does maintain references to these elements as objects. These references, which act as wrappers around the actual DOM nodes, are stored in the JavaScript heap. This allows JavaScript code to interact with and manipulate DOM elements.

The separation of DOM elements from the JavaScript heap has implications for memory management. The browser's garbage collector is responsible for reclaiming memory occupied by DOM elements that are no longer in use, but this process is separate from the garbage collection of JavaScript objects. Memory leaks can occur if JavaScript code retains references to DOM elements that have been removed from the document, preventing them from being garbage collected by the browser.

Memory Profiling Types in DevTools πŸ“Š

When you open the Memory panel in Chrome DevTools, you'll see three different types of memory profiles you can take:

1. Heap Snapshot πŸ“Έ

A Heap Snapshot provides a detailed view of your page's memory distribution at a specific point in time.

2. Allocation Instrumentation on Timeline (Allocation Sampling) ⏱️

This profile records memory allocations over time while performing actions on your page.

3. Allocation Sampling πŸ§ͺ

This lightweight profiling method samples the JavaScript heap at regular intervals.

4. Detached elements

Detached elements are DOM nodes that are no longer attached to the document but still occupy memory. They can lead to memory leaks if references to them are retained in JavaScript.

When to Use Each Type πŸ€”

Choose your profiling method based on what you're trying to diagnose:

Memory Tool πŸ”

πŸ“ Shallow Size

Shallow size is the amount of memory allocated for an object itself, excluding the memory used by objects referenced by it. Think of it as the object's personal space bubble!

πŸ“¦ Retained Size

Retained size is the total memory size that will be freed when the object is garbage collected. It includes the shallow size of the object and the sizes of all objects that are only accessible through this object.

πŸ—ΊοΈ Distance

Distance is a metric that indicates how far an object is from the root of the object graph. The further away it is, the more likely it is to get lost in the heap jungle!

Performance Tool ⚑

The Performance tool in DevTools helps you analyze the performance of your web application. It provides insights into how your application is performing, including CPU usage, memory usage, and network activity. (Like a personal trainer for your app!)

Memory Inspector Tool πŸ”¬

The Memory Inspector tool in DevTools helps you analyze the memory usage of your web application. It provides insights into how memory is allocated and retained, allowing you to optimize your application's performance.