Redis Clieht with customizable retrying capability.
There are Redis exceptions like below that can be handled by simply retrying it.
This package is built in order to help people who need to solve same problem.
- redis.exceptions.ConnectionError
- redis.exceptions.ResponseError
- redis.exceptions.TimeoutError
Anybody who wants to have retry logic with Redis.
pip install retry-redis
Simply import retry decorated Redis and Use it.
import logging
from retry_redis import Redis
logging.basicConfig(level=logging.DEBUG)
r = Redis(port=6666)
r.lpush('list:test', 1)
# This log will be printed.
# DEBUG:retry_redis.decorated_redis:Finished call to 'redis.client.Redis.lpush' after 0.002(s), this was the 1st time calling it.
# DEBUG:retry_redis.decorated_redis:Finished call to 'redis.client.Redis.lpush' after 2.005(s), this was the 2nd time calling it.
# DEBUG:retry_redis.decorated_redis:Finished call to 'redis.client.Redis.lpush' after 6.009(s), this was the 3rd time calling it.
- redis
- tenacity