AsyncKeyedLock 3.2.3

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

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.

Showing the top 20 packages that depend on AsyncKeyedLock.

Packages
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.

Fixes CancellationToken issues and adding TryLockAsync methods.

.NET Standard 2.0

  • No dependencies.

Version Last updated
7.1.8 12/5/2025
7.1.8-beta5 11/23/2025
7.1.8-beta4 11/23/2025
7.1.8-beta3 11/23/2025
7.1.8-beta2 11/23/2025
7.1.8-beta 11/23/2025
7.1.7 10/9/2025
7.1.6 4/16/2025
7.1.5-alpha 4/21/2025
7.1.4 3/12/2025
7.1.4-preview 3/23/2025
7.1.3 4/11/2025
7.0.2 3/27/2025
7.0.1 6/9/2025
7.0.0 4/5/2025
7.0.0-rc3 3/25/2025
7.0.0-rc2 3/13/2025
7.0.0-rc1 6/10/2025
7.0.0-beta 4/1/2025
7.0.0-alpha 3/29/2025
6.4.2 5/13/2025
6.4.1 6/8/2025
6.4.0 3/14/2025
6.3.4 4/7/2025
6.3.4-rc 5/4/2025
6.3.4-beta 6/9/2025
6.3.3 3/22/2025
6.3.2 4/2/2025
6.3.0 4/1/2025
6.2.6 3/15/2025
6.2.5 3/14/2025
6.2.4 3/17/2025
6.2.3 4/14/2025
6.2.3-beta 4/6/2025
6.2.2 3/22/2025
6.2.1 3/22/2025
6.2.0 5/2/2025
6.1.1 6/6/2025
6.1.1-rc 6/6/2025
6.1.1-beta 3/28/2025
6.1.0 3/17/2025
6.0.5 3/14/2025
6.0.5-alpha 4/20/2025
6.0.4 3/26/2025
6.0.4-rc6 5/13/2025
6.0.4-rc5 3/21/2025
6.0.4-rc3 4/14/2025
6.0.4-rc 3/17/2025
6.0.4-beta 4/22/2025
6.0.4-alpha 4/18/2025
6.0.3 4/3/2025
6.0.2 4/2/2025
6.0.1 5/9/2025
5.1.2 6/8/2025
5.1.1 3/15/2025
5.1.0 3/16/2025
5.0.4 4/4/2025
5.0.3 4/18/2025
5.0.3-rc 4/21/2025
5.0.2-rc 6/6/2025
5.0.1 3/18/2025
4.0.2 3/21/2025
3.2.3 6/9/2025
3.2.1 3/28/2025
3.2.0 6/8/2025
3.0.1 4/29/2025
3.0.0 6/9/2025
2.0.3 5/4/2025
2.0.2 6/7/2025
2.0.1 6/8/2025
2.0.0 4/28/2025
1.1.0 5/7/2025
1.0.1 4/11/2025
1.0.0 5/16/2025