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>revert-2341-remove_nodejs_errors
parent
91bf047be8
commit
e4c3bc3780
1 changed files with 8 additions and 1 deletions
@ -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> |
||||
|
Loading…
Reference in new issue