All original content is created in Ukrainian. Not all content has been translated yet. Some posts may only be available in Ukrainian.Learn more

What is a Garbage Collector in Ruby? How does it work and what is GC needed for?

This content has been automatically translated from Ukrainian.
Garbage Collector in Ruby is an automated memory management mechanism responsible for monitoring and freeing memory that is no longer used by the program. The GC ensures that memory allocated for objects that are no longer needed by the program can be reused, thereby optimizing system resources.
Just imagine that there are objects in memory that are unnecessary. Their number keeps increasing. A memory leak occurs. The server may stop responding, and in the case of scaling, your costs will only increase. So, GC is needed for efficient use of RAM.
The Garbage Collector in Ruby works on the principle of "mark-and-sweep". The garbage collector traverses all objects that can be reached from root objects (such as local variables and global variables) and marks (mark) them as "reachable". After the marking process is complete, the collector moves to the sweeping phase (sweep), where it frees memory from all objects that were not marked. These objects are considered "unreachable" and their memory (the memory they previously occupied) can be reused.
Ruby also uses the concept of generations (Generational Garbage Collection or GGC), which involves dividing objects into generations based on their usage frequency, allowing for more efficient memory management by focusing the garbage collector's efforts on younger, more dynamic objects that change more frequently.
GC is usually discussed when a Memory Leak occurs on the server. Of course, restarting the server will help for a while (RAM will be cleared and start filling up again), but this issue will still need to be addressed.

This post doesn't have any additions from the author yet.

15 Apr 18:11

What are HTTP Client Hints?

meme code
meme code@memecode
18 Apr 05:27

We fix ActiveRecord::ProtectedEnvironmentError in the local environment.

meme code
meme code@memecode
18 Apr 06:06

Analyzing the PG::ObjectInUse error (Ruby on Rails)

meme code
meme code@memecode
27 Apr 09:29

What are CC and BCC in emails? What are they for and how to use them?

meme code
meme code@memecode
What is a prompt and prompt engineering?
03 May 12:08

What is a prompt and prompt engineering?

meme code
meme code@memecode
ZOMBIE in Ruby. What is it?
03 May 12:41

ZOMBIE in Ruby. What is it?

meme code
meme code@memecode
A bit about Ruby implementation types (CRuby (MRI), JRuby, Rubinius, TruffleRuby, mruby)
05 May 12:36

A bit about Ruby implementation types (CRuby (MRI), JRuby, Rubinius, TruffleRuby, mruby)

meme code
meme code@memecode
07 May 07:24

What is native machine code?

meme code
meme code@memecode
Enabling YJIT in Ruby 3.2.1 (Ruby on Rails)
08 May 07:57

Enabling YJIT in Ruby 3.2.1 (Ruby on Rails)

meme code
meme code@memecode
09 May 12:43

[Fix] Rails Admin - undefined local variable or method javascript_importmap_shim_nonce_configuration_tag

meme code
meme code@memecode
What is technical debt in IT projects?
13 May 06:17

What is technical debt in IT projects?

meme code
meme code@memecode
13 May 07:11

What does scope mean in IT project management?

meme code
meme code@memecode