AsyncKeyedLock 4.0.2

There is a newer version of this package available.
See the version list below for details.
dotnet add package AsyncKeyedLock --version 4.0.2                
NuGet\Install-Package AsyncKeyedLock -Version 4.0.2                
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="4.0.2" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add AsyncKeyedLock --version 4.0.2                
#r "nuget: AsyncKeyedLock, 4.0.2"                
#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.
// Install AsyncKeyedLock as a Cake Addin
#addin nuget:?package=AsyncKeyedLock&version=4.0.2

// Install AsyncKeyedLock as a Cake Tool
#tool nuget:?package=AsyncKeyedLock&version=4.0.2                

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), limiting concurrent threads sharing the same key to a specified number.

For example, suppose you were processing financial transactions, but while working on one account you wouldn't want to concurrently process a transaction for the same account. Of course, you could just add a normal lock, but then you can only process one transaction at a time. If you're processing a transaction for account A, you may want to also be processing a separate transaction for account B. That's where AsyncKeyedLock comes in: it allows you to lock but only if the key matches.

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 is faster and consumes less memory. The former uses object and can be used to mix different types of objects.

Dependency injection

services.AddSingleton<AsyncKeyedLocker>();

or (recommended):

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

Variable instantiation

var asyncKeyedLocker = new AsyncKeyedLocker();

or (recommended):

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);

There are also AsyncKeyedLocker<TKey>() constructors which accept the parameters of ConcurrentDictionary, namely the concurrency level, the capacity and the IEqualityComparer<TKey> to use.

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. In the case of timeouts, you can also use TryLockAsync methods which will call a Func<Task> or Action if the timeout is not expired, whilst returning a boolean representing whether or not it waited successfully.

There are also synchronous Lock methods available, including out parameters for checking whether or not the timeout was reached.

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);

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. 
.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 (41)

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!

Volo.Abp.DistributedLocking.Abstractions

Package Description

EFCoreSecondLevelCacheInterceptor

Entity Framework Core Second Level Caching Library.

N3O.Umbraco.Extensions

TODO

ZhileTime.Hope.DistributedLocking.Abstractions

Package Description

GitHub repositories (15)

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

Repository Stars
jellyfin/jellyfin
The Free Software Media System - Server Backend & API
abpframework/abp
Open-source web application framework for ASP.NET Core! Offers an opinionated architecture to build enterprise software solutions with best practices on top of the .NET. Provides the fundamental infrastructure, cross-cutting-concern implementations, startup templates, application modules, UI themes, tooling and documentation.
Tyrrrz/DiscordChatExporter
Exports Discord chat logs to a file
microsoft/kiota
OpenAPI based HTTP Client code generator
stefanprodan/AspNetCoreRateLimit
ASP.NET Core rate limiting middleware
Version Downloads Last updated
7.1.4 172,628 11/22/2024
7.1.4-preview 97 11/22/2024
7.1.3 53,640 11/10/2024
7.0.2 92,509 10/13/2024
7.0.1 323,001 8/20/2024
7.0.0 106,712 7/21/2024
7.0.0-rc3 133 7/20/2024
7.0.0-rc2 130 7/20/2024
7.0.0-rc1 161 6/29/2024
7.0.0-beta 135 6/29/2024
7.0.0-alpha 132 6/29/2024
6.4.2 333,706 4/21/2024
6.4.1 1,526 4/21/2024
6.4.0 943 4/20/2024
6.3.4 1,593,681 1/23/2024
6.3.4-rc 595 1/23/2024
6.3.4-beta 557 1/23/2024
6.3.3 18,315 1/14/2024
6.3.2 1,540 1/14/2024
6.3.0 1,659 1/14/2024
6.2.6 19,464 1/1/2024
6.2.5 1,755 12/30/2023
6.2.4 80,234 12/6/2023
6.2.3 5,795 12/3/2023
6.2.3-beta 779 12/2/2023
6.2.2 832,175 10/9/2023
6.2.1 2,024,178 4/10/2023
6.2.0 97,162 2/25/2023
6.1.1 64,507 1/27/2023
6.1.1-rc 1,117 1/27/2023
6.1.1-beta 1,080 1/27/2023
6.1.0 18,288 1/26/2023
6.0.5 45,332 1/2/2023
6.0.5-alpha 1,094 12/30/2022
6.0.4 2,875 12/30/2022
6.0.4-rc6 1,080 12/30/2022
6.0.4-rc5 1,114 12/30/2022
6.0.4-rc3 1,082 12/30/2022
6.0.4-rc 1,047 12/29/2022
6.0.4-beta 1,101 12/29/2022
6.0.4-alpha 1,148 12/29/2022
6.0.3 3,377 12/29/2022
6.0.2 29,987 12/18/2022
6.0.1 2,756 12/17/2022 6.0.1 is deprecated because it has critical bugs.
5.1.2 3,863 12/16/2022
5.1.1 11,862 12/13/2022
5.1.0 4,622 12/3/2022
5.0.4 10,967 11/27/2022
5.0.3 3,296 11/26/2022
5.0.3-rc 1,105 11/26/2022
5.0.2-rc 1,075 11/26/2022
5.0.1 3,778 11/19/2022
4.0.2 7,562 11/13/2022
3.2.3 4,125 10/26/2022
3.2.1 3,121 10/23/2022
3.2.0 2,792 10/23/2022
3.0.1 3,322 10/18/2022
3.0.0 3,109 10/16/2022
2.0.3 17,234 6/29/2022 2.0.3 is deprecated because it has critical bugs.
2.0.2 18,078 3/13/2022 2.0.2 is deprecated because it has critical bugs.
2.0.1 3,194 3/13/2022 2.0.1 is deprecated because it has critical bugs.
2.0.0 3,271 3/11/2022 2.0.0 is deprecated because it has critical bugs.
1.1.0 4,455 12/11/2021 1.1.0 is deprecated because it has critical bugs.
1.0.1 3,231 11/22/2021
1.0.0 3,264 11/22/2021

Performance improvements and also allowing for concurrency level, capacity and an IEqualityComparer to be used.