C# Garbage Collector - Part 3


In the previous article, we discussed the differences between stack and heap and concluded that for freeing heap memory without manual intervention, we require the garbage collector.


A brief history of GC in .NET

The genesis of the garbage collector (GC) in .NET dates back to 1990 when Microsoft was developing its version of JavaScript, named JScript. Initially developed by a four-person team, one member, Patrick Dussud, who is recognized as the father of .NET’s garbage collector, developed a Conservative GC within the team. At that time, the CLR did not exist, and Patrick was working on the JVM.

Initially, Microsoft aimed to implement its version of the JVM instead of creating something akin to the current .NET runtime. However, once the CLR team was formed, they realized that the JVM imposed certain limitations on them, prompting the creation of their own environment.

With this decision, Patrick redeveloped a new GC from scratch, targeting the “best GC possible” concept, using LISP, his language of expertise. He then wrote a transpiler from LISP to C++ to make the code compatible with Microsoft’s runtime. (The birth of the CLR)

The current codes for the garbage collector used in .NET can be accessed from this file in Microsoft’s runtime repository. Today, Maoni Stephens, the technical lead of Microsoft’s GC team, who has written and presented many conferences and articles on various aspects of GC implementation, can be followed on her blog.


Currently, .NET is equipped with three modes (flavors) of GC, each optimized for different types of applications. Let’s dive into each of these:

Server GC

Optimized for server-side applications like ASP.NET Core and WCF, this variant of GC is designed for environments with high request rates and frequent object allocations and deallocations.

Server GC operates with a separate heap and a GC thread for each processor. This means that if you have an eight-core processor, there will be an independent heap and GC thread on each core during garbage collection.

This approach ensures the collection process is as swift as possible without additional pauses, preventing the application from “freezing”.

Server GC is only executable on multi-core processors. Attempting to run a server-side application in Server GC mode on a single-core processor will automatically result in a fallback to Non-Concurrent Workstation GC.

To use Server GC in non-server-side applications (like WPF, Windows Services, etc.) on multi-core processors, add the following settings to your app.config or web.config:

<configuration>
  <runtime>
    <gcServer enabled="true"/>
  </runtime>
</configuration>

In .NET Core applications, these settings can be added to your csproj file:

<PropertyGroup>
  <ServerGarbageCollection>true</ServerGarbageCollection>
</PropertyGroup>

Concurrent Workstation GC

This default mode is primarily used in Windows Forms and Windows Service applications. It’s optimized for scenarios where the application should not pause or become unresponsive, even momentarily, during garbage collection.

To enable Concurrent Workstation GC, include these settings in your application’s config:

<configuration>
  <runtime>
    <gcConcurrent enabled="true" />
  </runtime>
</configuration>

Non-Concurrent Workstation GC

Similar to Server GC, this mode conducts the collection on the thread that requests the object allocation.

For example:

Thread one requests the allocation of a 10000-character string.

The memory lacks sufficient space, triggering the garbage collector to free up the required space.

The CLR suspends all threads, the garbage collector begins its operation on the initiating thread, collecting unused objects.

Once the collection is complete, all previously suspended threads resume their operations.

This GC mode is recommended for server-side applications running on single-core processors. To activate it, modify the config settings of your application as follows:

<configuration>
  <runtime>
    <gcConcurrent enabled="false" />
  </runtime>
</configuration>

The following table will assist in selecting the appropriate GC settings based on the nature of your application (in most cases, the default settings are optimal, and manual adjustments to GC are unnecessary):

Concurrent WorkstationNon-Concurrent WorkstationServer GC
Design GoalBalance throughput and responsiveness for client apps with UI.Maximize throughput on single-processor machines.Maximize throughput on multi-processor machines for server apps that create multiple threads to handle the same types of requests.
Number of Heaps111 per processor ( hyper thread aware )
GC ThreadsThe thread which performs the allocation that triggers the GC.The thread which performs the allocation that triggers the GC.1 dedicated GC thread per processor
Execution Engine SuspensionEE is suspended much shorter but several times during a GC.EE is suspended during a GC.EE is suspended during a GC.
Config Setting
On a single processor (fallback)Non-Concurrent Workstation GC