Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gatsby-lee/retry-redis
redis-py with retry decoration
https://github.com/gatsby-lee/retry-redis
python redis-py retry
Last synced: about 1 month ago
JSON representation
redis-py with retry decoration
- Host: GitHub
- URL: https://github.com/gatsby-lee/retry-redis
- Owner: Gatsby-Lee
- License: gpl-3.0
- Created: 2019-05-30T03:25:04.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-07-07T11:57:54.000Z (over 3 years ago)
- Last Synced: 2024-04-24T04:30:10.451Z (9 months ago)
- Topics: python, redis-py, retry
- Language: Python
- Homepage:
- Size: 37.1 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
.. image:: https://img.shields.io/badge/License-GPL%20v3-blue.svg
:target: https://www.gnu.org/licenses/gpl-3.0.. image:: https://badge.fury.io/py/retry-redis.svg
:target: https://pypi.org/project/retry-redis/.. image:: https://img.shields.io/travis/Gatsby-Lee/retry-redis.svg
:target: https://travis-ci.org/Gatsby-Lee/retry-redisretry-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.TimeoutErrorWho should use?
---------------Anybody who wants to have retry logic with Redis.
How to Install
--------------.. code-block:: bash
pip install retry-redis
How To Use
----------Simply import retry decorated Redis and Use it.
.. code-block:: python
import logging
from retry_redis import Redislogging.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