Skip to main content

Redis Clieht with customizable retrying capability.

Project description

https://img.shields.io/badge/License-GPL%20v3-blue.svg https://badge.fury.io/py/retry-redis.svg https://img.shields.io/travis/Gatsby-Lee/retry-redis.svg

retry-redis

Redis Clieht with customizable retrying capability.

Why did I build this?

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

Who should use?

Anybody who wants to have retry logic with Redis.

How to Install

pip install retry-redis

How To Use

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.

Package Dependency

  • redis

  • tenacity

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

retry-redis-1.3.1.tar.gz (4.2 kB view hashes)

Uploaded Source

Built Distribution

retry_redis-1.3.1-py2.py3-none-any.whl (16.8 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page