Memory Dev Tools
Sun Jul 24 2022 11:49:03 GMT+0000 (UTC)
Saved by @Polly #memory #performance #profile #garbage-collection
# Chrome Dev Tools > moor tools > Task Manager > [ GPU memory, JavaScript memory ] - if increasing in size over time = potential memory leak Retaining Tree - two paths (to not be memory) shallow - actual size retained - all object refs collected comparison - object constructor separate heap snap shot containment - memory vs contained - root (object graph) incognito window - plugins get in heap snapshot take snapshot perform work take 2nd snapshot repeat work take 3rd snapshot summary > filter objects allocated between snapshots edge browser task manager memory tab - if increaseing - dom nodes are being created [fix memory problems](https://docs.microsoft.com/en-us/microsoft-edge/devtools-guide-chromium/memory-problems/) Allocation instrumentation on timeline > - blue lines represent new memory allocations = memory leaks
Comments