Redis distributed lock implementation for Python based on Pub/Sub messaging
Project description
Redis Lock with PubSub
Redis distributed lock implementation for Python based on Pub/Sub messaging.
1. Features
- Ensure atomicity by using the SETNX operation.
- Implements a Pub/Sub messaging system between the client attempting to acquire the lock and the one currently holding it.
- Includes a forced timeout mechanism to prevent infinite loops when attempting to acquire the lock.
- Supports asynchronous operations.
2. Installation
$> pip install redis-lock-py
Dependencies
- Python >= 3.9
- redis-py >= 5.2.0
3. Usage
3.1 Basic Example
import redis
from redis_lock import RedisLock
client = redis.Redis(host="127.0.0.1", port=6379)
name = "foo"
lock = RedisLock(client, name)
if not lock.acquire():
raise Exception("Fail to acquire lock")
print("Acquired lock successfully!")
lock.release()
The redis-py library is required for Redis connection objects.
After successfully acquiring the lock using RedisLock.acquire
, ensure to release it by calling RedisLock.release
to prevent lock retention.
3.2 Using Context Managers
import redis
from redis_lock import RedisLock
client = redis.Redis(host="127.0.0.1", port=6379)
with RedisLock(client, name="foo", blocking_timeout=10):
print("Acquired lock successfully!")
To avoid issues where the lock remains unreleased (potentially blocking other clients from acquiring it),
you can use RedisLock
with a context manager, which ensures that the lock is automatically released at the end of the with
block.
Both examples in sections 3.1 and 3.2 function in a same manner.
3.3 With Asyncio
from redis.asyncio import Redis
from redis_lock.asyncio import RedisLock
client = Redis(host="127.0.0.1", port=6379)
async with RedisLock(client, name="foo", blocking_timeout=10):
print("Acquired lock successfully!")
redis-lock supports the asyncio platform.
3.4 Using Spin Lock
import redis
from redis_lock import RedisSpinLock
client = redis.Redis(host="127.0.0.1", port=6379)
lock = RedisSpinLock(client, name="foo")
if not lock.acquire(blocking=True, sleep_time=0.1):
raise Exception("Fail to acquire lock")
print("Acquired lock successfully!")
lock.release()
While a spin lock is available, it is not recommended unless there is a compelling reason to use it, as it is less efficient compared to the Pub/Sub messaging system.
System Flow
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file redis_lock_py-1.1.0.tar.gz
.
File metadata
- Download URL: redis_lock_py-1.1.0.tar.gz
- Upload date:
- Size: 6.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8a71a489bf3637d18d99fc8bf5d665dd2385780daaf9e520f6379c406f1c99c3 |
|
MD5 | 1763fc57c5e6f656bb493f3281cd2b2e |
|
BLAKE2b-256 | 7a6ee2a96eaf76aa0ff28c26bf0414cca1b85f7cb6057544d745e636bfd93265 |
File details
Details for the file redis_lock_py-1.1.0-py3-none-any.whl
.
File metadata
- Download URL: redis_lock_py-1.1.0-py3-none-any.whl
- Upload date:
- Size: 3.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d6f19e03aeed359c8edcc2b30ad51377dac153bc82a67ddca126c0f28d690c19 |
|
MD5 | 4236a45434017db5bce7cca8360ccd49 |
|
BLAKE2b-256 | 26add7c1d459b746ba568a893571efad29f666f00a51144f664121135c7a126f |