Loading...

Memory Management in Node.js – Complete Guide

Memory Management in Node.js – Complete Guide

Over the last decade, Internet access has shifted from being limited to the upper crust to practically anybody with a device capable of connecting to the internet. With more individuals using the internet, developers confront a significant difficulty in managing the application’s load and memory management. Let us see how we achieve this in Node.

Memory Management

Memory leaks have been the most common enemy that the IT sector has been forced to battle with every day. This is primarily due to the  expanding user base and, more importantly, because of the growing codebase which is coupled with hundreds of new features added with each software release. Memory leaks can cause several issues including application slowdowns, crashes, and high latency, among other things.

Developers of low-level languages, like C, must manually manage memory using malloc and calloc. JavaScript, on the other hand, allocates memory when objects are created and releases it when they are no longer in use. This operation is known as garbage collection.

Does this, however, imply that JavaScript coders have no understanding of memory management? Certainly not! Whenever Node.js receives negative news, it is almost always due to performance issues. A basic understanding of Node.js is all that is required of the user. Regardless of programming language, the garbage collection cycle is pretty much the same.

memory management
Garbage Collection in Node.js

Garbage Collection With Reference to Counting

This is the most rudimentary garbage collecting method. This algorithm checks whether or not the object has at least one reference. The term ‘trash’ is used if there are no references to an object. Let us have a look at how GC works in general.

Circular References Are a limitation.

Let’s imagine two objects in memory are referring to one another, establishing a cycle, but they’re not connected to the root. That is, they are no longer required in the code execution because they are outside the scope of the function. This memory must now be reclaimed. However, because the reference counting mechanism checks if an object has at least one reference pointing to it, neither of them is designated as garbage and continues to occupy memory space.

Algorithm of Mark-and-Sweep

This algorithm reduces the definition of “object is no longer needed” to “object is unreachable”. It works on the understanding of roots (collections of objects). A root is known to be a global object in JavaScript. As a result, the trash collector will begin at the roots and search for all objects referenced by these roots, as well as objects referred by these, and so on. It locates both attainable and inaccessible things.

The unreachable objects are then freed from memory by the GC. Circular references are no longer an issue. If two circularly referred items exist in the memory and can’t be reached directly or indirectly through the roots, they’re released.

Causes of Memory Leak in Node.js

  1. Global Variables
  2. Multiple References
  3. Closures
  4. Timers & Events

Conclusion

This was all about memory management and memory management in Node.js! If you want to learn more about it, do check out the articles based on Node.js available on Codedamn, along with the course. We hope you enjoyed it; do let us know if you have any questions or recommendations in the comments section.

Additionally, if you’re interested in studying JavaScript, codedamn offers classes with a built-in environment sandbox where you can learn and practice code. Join the codedamn community, read other programming and development articles on the site, and sign up for our newsletter to be informed about new programs and upgrades. 

Sharing is caring

Did you like what Agam singh, Aman Ahmed Siddiqui, Aman Chopra, Aman, Amol Shelke, Anas Khan, Anirudh Panda, Ankur Balwada, Anshul Soni, Arif Shaikh, wrote? Thank them for their work by sharing it on social media.

0/10000

No comments so far