mirror of
https://github.com/kamranahmedse/developer-roadmap.git
synced 2025-08-29 20:21:50 +02:00
Added content on memory leaks, its causes and its detectors (#2342)
* Added content on memory leaks, its causes and its detectors also added some free blog links for more information * Update content/roadmaps/107-nodejs/content/116-nodejs-more-debugging/100-memory-leaks/readme.md Co-authored-by: Kamran Ahmed <kamranahmed.se@gmail.com>
This commit is contained in:
@@ -1 +1,8 @@
|
||||
# Memory leaks
|
||||
# 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.
|
||||
|
||||
<ResourceGroupTitle>Free Content</ResourceGroupTitle>
|
||||
<BadgeLink badgeText='Website' colorScheme="yellow" href='https://sematext.com/blog/nodejs-memory-leaks/'>Memory leaks in Node.js</BadgeLink>
|
||||
<BadgeLink badgeText='Read' colorScheme="yellow" href='https://sematext.com/blog/nodejs-memory-leaks/#what-causes-them-common-node-js-memory-leaks'>Memory leaks causes</BadgeLink>
|
||||
<BadgeLink badgeText='Documentation' colorScheme="yellow" href='https://sematext.com/blog/nodejs-memory-leaks/#node-js-memory-leak-detectors'>Memory leaks detectors</BadgeLink>
|
||||
|
Reference in New Issue
Block a user