Efficient Synchronization in C# with SemaphoreSlim

In modern software development, efficient concurrency handling is crucial, especially when working with multi-threaded applications. Whether controlling access to shared resources or limiting the number of concurrent tasks, managing synchronization effectively can significantly improve your application’s performance and stability.

One tool that often goes underutilized in C# is the SemaphoreSlim class. This lightweight synchronization primitive provides a highly efficient way to control the number of threads that can access a particular resource concurrently. Let’s dive into when and why you should use SemaphoreSlim and how it fits into the broader picture of concurrency control in C#.

What is SemaphoreSlim?

In C#, a semaphore is a thread synchronization primitive that controls access to a resource by allowing a specific number of threads to enter a critical section. A SemaphoreSlim is a lightweight version of the traditional Semaphore optimized for managing access within the same process, mainly when used in asynchronous code.

Unlike a traditional Semaphore, which can work across multiple processes and relies on operating system-level synchronization, SemaphoreSlim is explicitly designed for in-process synchronization. It offers faster performance for scenarios where OS-level interaction is unnecessary.

How to Use SemaphoreSlim

First, you need to create a SemaphoreSlim object. You have to pass into the constructor initialCounter parameter, which means the number of requests for the Semaphore that can be granted concurrently. Additionally, you can define the maximum number of requests for the Semaphore that can be granted concurrently with the maxCount parameter. 

The Wait method blocks the current thread until it can enter the SemaphoreSlim object.

The Release method exits the SemaphoreSlim. 

SemaphoreSlim semaphoreSlim = new SemaphoreSlim(initialCount: 3, maxCount: 5);
semaphoreSlim.Wait();
try
{
    // Access a shared resource.
}
finally
{
    semaphoreSlim.Release();
}


Wrapping access to a shared resource with a try/finally block when using synchronization primitives like SemaphoreSlim is crucial for ensuring the synchronization mechanism is properly released, even if an exception occurs during the operation. This practice helps avoid potential resource leaks and deadlocks.

Using Statement

SemaphoreSlim type implements an IDisposable interface. That means you can use it with using statement. 

However, be careful with that. If the SemaphoreSlim instance is short-lived and has a clear scope (e.g., you know exactly when it’s created and should be disposed of), then using it with the using statement is appropriate. 

using SemaphoreSlim semaphoreSlim = new(3);

semaphoreSlim.Wait();
try
{
    // Access shared resource
}
finally
{
    semaphoreSlim.Release();
}
// SemaphoreSlim is disposed of here


If the SemaphoreSlim has a longer lifetime, such as when it is shared across multiple parts of an application (e.g., across multiple threads, tasks, or requests), using a using statement may not be appropriate. Disposing of the Semaphore too early (inside a statement) could lead to runtime exceptions when other threads attempt to access the already-disposed Semaphore.

SemaphoreSlim vs Lock

While C# provides other locking mechanisms such as lock (or new Lock object from C# 13), these are typically blocking and don’t work well with asynchronous code. SemaphoreSlim acts as a non-blocking, lightweight lock that allows high-contention workloads to be handled more efficiently.

SemaphoreSlim semaphoreSlim = new(3);

await semaphoreSlim.WaitAsync();
try
{
    await Task.Delay(1000);
}
finally
{
    semaphoreSlim.Release();
}

When to Use SemaphoreSlim

  1. Limit Concurrent Access: Control how many threads or tasks can access a shared resource simultaneously (e.g., database connections, file I/O).
  2. Async-Friendly Synchronization: Use SemaphoreSlim when you need synchronization in asynchronous operations (async/await), as it supports non-blocking waits with WaitAsync().
  3. Throttling/Ratelimiting: Manage the number of parallel requests or operations, such as API calls or file processing, to prevent overload.
  4. Producer-Consumer Scenarios: Balance the workload between producing and consuming tasks concurrently, ensuring limited parallelism.
  5. Lightweight Locking: Use it as a lightweight lock for handling high-contention tasks more efficiently than traditional locks.

Avoid using SemaphoreSlim when synchronization across processes is needed (use Semaphore instead) or when a simpler locking mechanism like lock is sufficient.

Summary

In this issue, we explored the SemaphoreSlim, the lightweight synchronization primitive in .NET.

You learned the difference between SemaphoreSlim and Semaphore. Also, when and how to use SemaphoreSlim

Whether you’re throttling API requests, limiting database connections, or synchronizing multiple threads, SemaphoreSlim can help you enforce these limits without the overhead of traditional synchronization mechanisms.

Scroll to Top