Roadmap to becoming a developer in 2022
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Aarti Verma e4c3bc3780
Added content on memory leaks, its causes and its detectors (#2342)
3 years ago
..
100-garbage-collection.md Add garbage collection content 3 years ago
readme.md Added content on memory leaks, its causes and its detectors (#2342) 3 years ago

readme.md

Memory Leaks

Memory leaks are caused when your Node.js app’s CPU and memory usage increases over time for no apparent reason. In simple terms, a Node.js memory leak is an orphan block of memory on the Heap that is no longer used by your app because it has not been released by the garbage collector. It’s a useless block of memory. These blocks can grow over time and lead to your app crashing because it runs out of memory.

Free Content Memory leaks in Node.js Memory leaks causes Memory leaks detectors