AsyncKeyedLock 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() constructors which accept the parameters of ConcurrentDictionary, namely the concurrency level, the capacity and the IEqualityComparer 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.

Showing the top 20 packages that depend on AsyncKeyedLock.

Packages Downloads
Volo.Abp.DistributedLocking.Abstractions
Package Description
2
Volo.Abp.DistributedLocking.Abstractions
Package Description
3
Volo.Abp.DistributedLocking.Abstractions
Package Description
4
Volo.Abp.DistributedLocking.Abstractions
Package Description
5

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

.NET Standard 2.0

  • No dependencies.

Version Downloads Last updated
6.4.2 3 05/29/2024
6.4.1 1 05/29/2024
6.4.0 1 05/29/2024
6.3.4 6 05/29/2024
6.3.4-rc 2 05/29/2024
6.3.4-beta 3 05/31/2024
6.3.3 1 05/29/2024
6.3.2 2 05/29/2024
6.3.0 4 05/29/2024
6.2.6 1 05/29/2024
6.2.5 4 05/29/2024
6.2.4 3 05/29/2024
6.2.3 1 05/29/2024
6.2.3-beta 3 05/31/2024
6.2.2 4 05/29/2024
6.2.1 3 05/29/2024
6.2.0 1 05/29/2024
6.1.1 1 05/29/2024
6.1.1-rc 1 05/29/2024
6.1.1-beta 2 05/31/2024
6.1.0 3 05/29/2024
6.0.5 3 05/29/2024
6.0.5-alpha 1 05/29/2024
6.0.4 3 05/29/2024
6.0.4-rc6 1 05/29/2024
6.0.4-rc5 1 05/29/2024
6.0.4-rc3 1 05/29/2024
6.0.4-rc 2 05/29/2024
6.0.4-beta 1 05/31/2024
6.0.4-alpha 1 05/29/2024
6.0.2 1 05/29/2024
6.0.1 2 05/29/2024
5.1.2 1 05/29/2024
5.1.1 1 05/29/2024
5.1.0 2 05/29/2024
5.0.4 4 05/29/2024
5.0.3 1 05/29/2024
5.0.3-rc 1 05/29/2024
5.0.2-rc 1 05/29/2024
4.0.2 2 05/29/2024
3.2.3 2 05/29/2024
3.2.1 3 05/29/2024
3.2.0 1 05/29/2024
3.0.1 3 05/29/2024
3.0.0 3 05/29/2024
2.0.3 2 05/29/2024
2.0.2 1 05/29/2024
2.0.1 1 05/29/2024
2.0.0 1 05/29/2024
1.1.0 1 05/29/2024
1.0.1 2 05/29/2024
1.0.0 2 05/29/2024