Redis message queue utils: a simple distributed lock based on redis, a simple message queue based on redis with ack feature.
Project description
redmq
Redis message queue utils: a simple distributed lock based on redis, a simple message queue based on redis with ack feature.
Install
pip install redmq
Usage Examples
redmq.lock.RedisLock
import redis
from redmq.lock import RedisLock
conn = redis.Redis()
lock_name = "test01_lock"
with RedisLock(conn, lock_name) as locked:
if lock:
pass # do things if acquired the lock
else:
pass # do things if not acquired the lock
redmq.message_queue.MessageQueue
worker.py
import time
import redis
from redmq.message_queue import MessageQueue
conn = redis.Redis()
mq = MessageQueue(conn)
while True:
task = mq.pop_nowait()
if task:
message = task["message"]
mq.acknowledge(task, message.upper())
else:
time.sleep(0.1)
client.py
import time
import redis
from redmq.message_queue import MessageQueue
conn = redis.Redis()
mq = MessageQueue(conn)
task1 = mq.push("task1")
task_info = None
for _ in range(100):
task_info = mq.get_result_nowait(task1)
if task_info:
break
time.sleep(0.1)
print(task_info["result"])
start worker
python3 worker.py
start client
python3 client.py
client output
test@test redmq % python3.9 client.py
{'error_message': 'OK', 'result_data': 'TASK1', 'success': True, 'error_code': 0}
Why NOT using blpop instead of lpop?
We do pop_nowait via LUA script, but redis is NOT allow us to use blpop in LUA script.
Releases
v0.1.0
- First release.
v0.1.1
- redmq.message_queue.MessageQueue.push takes
high_priority
parameter. Normal message use FIFO rule, andhigh_priority
message use LIFO rule.
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
redmq-0.1.1.tar.gz
(5.4 kB
view details)
Built Distribution
redmq-0.1.1-py3-none-any.whl
(5.6 kB
view details)
File details
Details for the file redmq-0.1.1.tar.gz
.
File metadata
- Download URL: redmq-0.1.1.tar.gz
- Upload date:
- Size: 5.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1d32c46cc1d85ba128b2b88239df066b3061b85ce33adcf16a60b29b33769608 |
|
MD5 | 3a4c10b16ec8c1fb0900be4c6f9aaefe |
|
BLAKE2b-256 | 88bc1d6754ea9efea8d9976e47469c3798abbd1f89ab9ac9a8b74464531ea354 |
File details
Details for the file redmq-0.1.1-py3-none-any.whl
.
File metadata
- Download URL: redmq-0.1.1-py3-none-any.whl
- Upload date:
- Size: 5.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b2eceb337a7e5a53f5492d0465e873f88d291250fc5acd36df11d1ca570b5a79 |
|
MD5 | 8dbad208d545365a0bb0b0a80bcbd5e3 |
|
BLAKE2b-256 | aa23ab9405d700fb1cd230c74b1191d64c6a6aa53a640493a359a988c41e9509 |