platypush/platypush/plugins/redis.py

90 lines
2.1 KiB
Python
Raw Normal View History

from redis import Redis
from platypush.plugins import Plugin, action
class RedisPlugin(Plugin):
2018-06-25 19:57:43 +02:00
"""
Plugin to send messages on Redis queues.
Requires:
* **redis** (``pip install redis``)
"""
def __init__(self, *args, **kwargs):
super().__init__()
self.args = args
self.kwargs = kwargs
def _get_redis(self):
return Redis(*self.args, **self.kwargs)
@action
def send_message(self, queue, msg, *args, **kwargs):
2018-06-25 19:57:43 +02:00
"""
Send a message to a Redis queu.
:param queue: Queue name
:type queue: str
:param msg: Message to be sent
:type msg: str, bytes, list, dict, Message object
:param args: Args passed to the Redis constructor (see https://redis-py.readthedocs.io/en/latest/#redis.Redis)
:type args: list
:param kwargs: Kwargs passed to the Redis constructor (see https://redis-py.readthedocs.io/en/latest/#redis.Redis)
:type kwargs: dict
"""
redis = Redis(*args, **kwargs)
redis.rpush(queue, msg)
@action
def mget(self, keys, *args):
"""
:returns: The values specified in keys as a key/value dict (wraps MGET)
"""
return {
keys[i]: value.decode()
for (i, value) in enumerate(self._get_redis().mget(keys, *args))
}
@action
def mset(self, *args, **kwargs):
"""
Set key/values based on mapping (wraps MSET)
"""
return self._get_redis().mset(*args, **kwargs)
2018-09-20 12:49:57 +02:00
@action
def expire(self, key, expiration):
"""
Set an expiration time in seconds for the specified key
:param key: Key to set to expire
:type key: str
:param expiration: Expiration timeout (in seconds)
:type expiration: int
"""
return self._get_redis().expire(key, expiration)
@action
def delete(self, *args):
"""
Delete one or multiple keys
:param args: Keys to delete
"""
return self._get_redis().delete(*args)
# vim:sw=4:ts=4:et: