AsyncKeyedLock 3.2.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package AsyncKeyedLock --version 3.2.0
                    
NuGet\Install-Package AsyncKeyedLock -Version 3.2.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="AsyncKeyedLock" Version="3.2.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="AsyncKeyedLock" Version="3.2.0" />
                    
Directory.Packages.props
<PackageReference Include="AsyncKeyedLock" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add AsyncKeyedLock --version 3.2.0
                    
#r "nuget: AsyncKeyedLock, 3.2.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package AsyncKeyedLock@3.2.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=AsyncKeyedLock&version=3.2.0
                    
Install as a Cake Addin
#tool nuget:?package=AsyncKeyedLock&version=3.2.0
                    
Install as a Cake Tool

AsyncKeyedLock AsyncKeyedLock

GitHub Workflow Status Nuget Nuget

An asynchronous .NET Standard 2.0 library that allows you to lock based on a key (keyed semaphores), only allowing a defined number of concurrent threads that share the same key.

For example, if you're processing transactions, you may want to limit to only one transaction per user so that the order is maintained, but meanwhile allowing parallel processing of multiple users.

Benchmarks

Tests show that AsyncKeyedLock is faster than similar libraries, while consuming less memory.

Installation

The recommended means is to use NuGet, but you could also download the source code from here.

Usage

You need to start off with creating an instance of AsyncKeyedLocker or AsyncKeyedLocker<T>. The recommended way is to use the latter, which consumes less memory. The former uses object and may be slightly faster, but at the expense of higher memory usage.

Dependency injection

services.AddSingleton<IAsyncKeyedLocker, AsyncKeyedLocker>();

or:

services.AddSingleton<IAsyncKeyedLocker<string>, AsyncKeyedLocker<string>>();

Variable instantiation

var asyncKeyedLocker = new AsyncKeyedLocker();

or:

var asyncKeyedLocker = new AsyncKeyedLocker<string>();

or if you would like to set the maximum number of requests for the semaphore that can be granted concurrently (set to 1 by default):

var asyncKeyedLocker = new AsyncKeyedLocker<string>(2);

Locking

using (var lockObj = await asyncKeyedLocker.LockAsync(myObject))
{
	...
}

There are other overloaded methods for LockAsync which allow you to use CancellationToken, milliseconds timeout, System.TimeSpan or a combination of these.

There are also synchronous Lock methods available.

If you would like to see how many concurrent requests there are for a semaphore for a given key:

int myRemainingCount = asyncKeyedLocker.GetRemainingCount(myObject);

If you would like to see the number of remaining threads that can enter the lock for a given key:

int myCurrentCount = asyncKeyedLocker.GetCurrentCount(myObject);

If you would like to check whether any request is using a specific key:

bool isInUse = asyncKeyedLocker.IsInUse(myObject);

And if for some reason you need to force release the requests in the semaphore for a key:

asyncKeyedLocker.ForceRelease(myObject);

Credits

This library was inspired by Stephen Cleary's solution.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETStandard 2.0

    • No dependencies.

NuGet packages (58)

Showing the top 5 NuGet packages that depend on AsyncKeyedLock:

Package Downloads
EasyCaching.Core

EasyCaching is a open source caching library that contains basic usages and some advanced usages of caching which can help us to handle caching more easier!

EFCoreSecondLevelCacheInterceptor

Entity Framework Core Second Level Caching Library.

N3O.Umbraco.Extensions

TODO

ZhileTime.Hope.DistributedLocking.Abstractions

Package Description

Microsoft.OpenApi.Kiota.Builder

The core engine behind the OpenAPI based client generator.

GitHub repositories (22)

Showing the top 20 popular GitHub repositories that depend on AsyncKeyedLock:

Repository Stars
jellyfin/jellyfin
The Free Software Media System - Server Backend & API
Tyrrrz/DiscordChatExporter
Saves Discord chat logs to a file
ZiggyCreatures/FusionCache
FusionCache is an easy to use, fast and robust hybrid cache with advanced resiliency features.
microsoft/kiota
OpenAPI based HTTP Client code generator
stefanprodan/AspNetCoreRateLimit
ASP.NET Core rate limiting middleware
dotnetcore/EasyCaching
:boom: EasyCaching is an open source caching library that contains basic usages and some advanced usages of caching which can help us to handle caching more easier!
smartstore/Smartstore
A modular, scalable and ultra-fast open-source all-in-one eCommerce platform built on ASP.NET Core 10
VahidN/EFCoreSecondLevelCacheInterceptor
EF Core Second Level Cache Interceptor
Listenarrs/Listenarr
Listenarr automates audiobook collection management similar to Sonarr or Radarr, but for audiobooks. It can search, download, and organize your library automatically using metadata from Audible and other sources.
omeryanar/FileExplorer
Windows File Explorer alternative with tab browsing
ForNeVeR/Cesium
C compiler for the CLI platform
netcorepal/netcorepal-cloud-framework
一个基于ASP.NET Core实现的整洁领域驱动设计落地战术框架。 A tactical framework for Clean Domain-Driven Design based on ASP.NET Core.
trimble-oss/dba-dash
DBA Dash - SQL Server Monitoring Tool
ShokoAnime/Shokofin
Repository for Shokofin, a plugin that brings Shoko to Jellyfin.
Kaliumhexacyanoferrat/GenHTTP
Lightweight embeddable web server written in pure C# with few dependencies to 3rd-party libraries.
habibrehmansg/infopanel
InfoPanel is a desktop visualization software designed to work with HWiNFO sensors via Shared Memory (SHM). It allows users to display system information on their desktop or external displays, including USB-only LCDs like BeadaPanel.
wisedev-code/MaIN.NET
NuGet package designed to make LLMs, RAG, and Agents first-class citizens in .NET
sa-es-ir/DotNet.RateLimit
A Distributed RateLimit for Controller-Actions and Minimal API.
vesoapp/veso
Open source media server.
VahidN/DNTCommon.Web.Core
DNTCommon.Web.Core provides common scenarios' solutions for ASP.NET Core applications.
Version Downloads Last Updated
8.0.2 452,420 2/10/2026
8.0.1 253,317 1/24/2026
8.0.0 94,566 1/2/2026
8.0.0-beta2 156 12/31/2025
8.0.0-beta 150 12/31/2025
7.1.8 919,476 11/23/2025
7.1.8-beta5 218 11/23/2025
7.1.8-beta4 214 11/23/2025
7.1.8-beta3 223 11/23/2025
7.1.8-beta2 214 11/23/2025
7.1.8-beta 217 11/23/2025
7.1.7 338,977 10/4/2025
7.1.6 3,083,984 4/12/2025
7.1.5-alpha 263 4/12/2025
7.1.4 1,334,677 11/22/2024
7.1.4-preview 257 11/22/2024
3.2.0 5,433 10/23/2022
Loading failed

ForceRelease now releases everything in the semaphore before removing the key from the dictionary.