kirov-opensource / RedisLock

The blocking implementation of StackExchange.Redis LockTake and the automatic release of locks

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

RedisLock

NuGet Publish Workflow NuGet GitHub issues GitHub repo size in bytes GitHub top language

The blocking implementation of StackExchange.Redis LockTake and the automatic release of locks.

How to use

  • Introducing Kirov.RedisLock in the nuget.
public class Example
{
    private readonly IDatabase _redisDatabase;
    public Example(ConnectionMultiplexer connectionMultiplexer)
    {
        this._redisDatabase = connectionMultiplexer.GetDatabase();
    }

    public async Task ExampleFunction()
    {
        // Waiting for lock acquisition.
        await using (await _redisDatabase.BlockLockTakeAsync("key", "value"))
        {
            // Your code here.
        }
    }
}

Don't care about the release timing of the lock at all, it will be automatically released at the end of the using method block. It also has several overloaded methods:

// This will cause the lock to be released after 3 minute, even if the using does not release the lock (actually, it passes the parameter to IDatabase.LockTakeAsync(expiry)).
BlockLockTakeAsync("key", "value", TimeSpan.FromMinutes(3));

// This will cause the lock to be released after 3 minute.
// If the lock is not acquired, try to acquire it again every 200ms.
// This parameter is actually the default value of BlockLockTakeAsync().
BlockLockTakeAsync("key", "value", TimeSpan.FromMinutes(3), TimeSpan.FromMilliseconds(200));

// Wait up to 5000 milliseconds when trying to acquire a lock, throw OperationCanceledException if the timeout expires.
var cts = new CancellationTokenSource(5000);
BlockLockTakeAsync("key", "value", cts.Token);

About

The blocking implementation of StackExchange.Redis LockTake and the automatic release of locks

License:MIT License


Languages

Language:C# 99.2%Language:Batchfile 0.8%