monkeylearn / django-sentinel

Plugin for django-redis that supports Redis Sentinel

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Travis Status

django-sentinel

Plugin for django-redis that supports Redis Sentinel. This is fork of KabbageInc/django-redis-sentinel deprecated project.

Installation

pip install django-sentinel

Usage

Location format: master_name/sentinel_server:port,sentinel_server:port/db_id

In your settings, do something like this:

    CACHES = {
        "default": {
            "BACKEND": "django_redis.cache.RedisCache",
            "LOCATION": "redis_master/sentinel-host1:2639,sentinel-host2:2639/0"
            "OPTIONS": {
                "PASSWORD": 's3cret_passw0rd!',
                "CLIENT_CLASS": "django_sentinel.SentinelClient",
            }
        }
    }

About

Plugin for django-redis that supports Redis Sentinel

License:MIT License


Languages

Language:Python 97.7%Language:Shell 2.3%