AsyncKeyedLock 3.2.0
See the version list below for details.
dotnet add package AsyncKeyedLock --version 3.2.0
NuGet\Install-Package AsyncKeyedLock -Version 3.2.0
<PackageReference Include="AsyncKeyedLock" Version="3.2.0" />
paket add AsyncKeyedLock --version 3.2.0
#r "nuget: AsyncKeyedLock, 3.2.0"
// Install AsyncKeyedLock as a Cake Addin #addin nuget:?package=AsyncKeyedLock&version=3.2.0 // Install AsyncKeyedLock as a Cake Tool #tool nuget:?package=AsyncKeyedLock&version=3.2.0
AsyncKeyedLock
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 | Versions 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. |
.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. |
-
.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 (14)
Showing the top 5 popular GitHub repositories that depend on AsyncKeyedLock:
Repository | Stars |
---|---|
jellyfin/jellyfin
The Free Software Media System
|
|
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
|
|
stefanprodan/AspNetCoreRateLimit
ASP.NET Core rate limiting middleware
|
|
microsoft/kiota
OpenAPI based HTTP Client code generator
|
Version | Downloads | Last updated | |
---|---|---|---|
7.1.4 | 347 | 11/22/2024 | |
7.1.4-preview | 39 | 11/22/2024 | |
7.1.3 | 17,276 | 11/10/2024 | |
7.0.2 | 54,571 | 10/13/2024 | |
7.0.1 | 171,621 | 8/20/2024 | |
7.0.0 | 89,731 | 7/21/2024 | |
7.0.0-rc3 | 124 | 7/20/2024 | |
7.0.0-rc2 | 120 | 7/20/2024 | |
7.0.0-rc1 | 148 | 6/29/2024 | |
7.0.0-beta | 123 | 6/29/2024 | |
7.0.0-alpha | 120 | 6/29/2024 | |
6.4.2 | 283,383 | 4/21/2024 | |
6.4.1 | 1,207 | 4/21/2024 | |
6.4.0 | 634 | 4/20/2024 | |
6.3.4 | 1,257,667 | 1/23/2024 | |
6.3.4-rc | 572 | 1/23/2024 | |
6.3.4-beta | 550 | 1/23/2024 | |
6.3.3 | 16,569 | 1/14/2024 | |
6.3.2 | 1,243 | 1/14/2024 | |
6.3.0 | 1,364 | 1/14/2024 | |
6.2.6 | 18,788 | 1/1/2024 | |
6.2.5 | 1,454 | 12/30/2023 | |
6.2.4 | 72,765 | 12/6/2023 | |
6.2.3 | 4,944 | 12/3/2023 | |
6.2.3-beta | 768 | 12/2/2023 | |
6.2.2 | 761,159 | 10/9/2023 | |
6.2.1 | 1,962,297 | 4/10/2023 | |
6.2.0 | 95,162 | 2/25/2023 | |
6.1.1 | 63,807 | 1/27/2023 | |
6.1.1-rc | 1,111 | 1/27/2023 | |
6.1.1-beta | 1,074 | 1/27/2023 | |
6.1.0 | 17,992 | 1/26/2023 | |
6.0.5 | 44,160 | 1/2/2023 | |
6.0.5-alpha | 1,088 | 12/30/2022 | |
6.0.4 | 2,580 | 12/30/2022 | |
6.0.4-rc6 | 1,074 | 12/30/2022 | |
6.0.4-rc5 | 1,108 | 12/30/2022 | |
6.0.4-rc3 | 1,076 | 12/30/2022 | |
6.0.4-rc | 1,041 | 12/29/2022 | |
6.0.4-beta | 1,095 | 12/29/2022 | |
6.0.4-alpha | 1,142 | 12/29/2022 | |
6.0.3 | 3,086 | 12/29/2022 | |
6.0.2 | 29,551 | 12/18/2022 | |
6.0.1 | 2,456 | 12/17/2022 | |
5.1.2 | 3,567 | 12/16/2022 | |
5.1.1 | 11,568 | 12/13/2022 | |
5.1.0 | 4,210 | 12/3/2022 | |
5.0.4 | 10,673 | 11/27/2022 | |
5.0.3 | 2,994 | 11/26/2022 | |
5.0.3-rc | 1,099 | 11/26/2022 | |
5.0.2-rc | 1,052 | 11/26/2022 | |
5.0.1 | 3,472 | 11/19/2022 | |
4.0.2 | 6,942 | 11/13/2022 | |
3.2.3 | 3,832 | 10/26/2022 | |
3.2.1 | 2,830 | 10/23/2022 | |
3.2.0 | 2,490 | 10/23/2022 | |
3.0.1 | 3,027 | 10/18/2022 | |
3.0.0 | 2,817 | 10/16/2022 | |
2.0.3 | 16,944 | 6/29/2022 | |
2.0.2 | 17,775 | 3/13/2022 | |
2.0.1 | 2,905 | 3/13/2022 | |
2.0.0 | 2,979 | 3/11/2022 | |
1.1.0 | 4,160 | 12/11/2021 | |
1.0.1 | 2,942 | 11/22/2021 | |
1.0.0 | 2,798 | 11/22/2021 |
ForceRelease now releases everything in the semaphore before removing the key from the dictionary.