/django-heroku-redisify

Friendly Redis for Django on Heroku

Primary LanguagePythonBSD 3-Clause "New" or "Revised" LicenseBSD-3-Clause

django-heroku-redisify: Friendly Redis for Django on Heroku

https://secure.travis-ci.org/dirn/django-heroku-redisify.png?branch=master

A user-friendly method to configure Django projects on Heroku to use Redis.

Inspired by the work of Randall Degges.

Usage

Place this code into your project's settings.py:

from redisify import redisify
CACHES = {'default': redisify(default='redis://localhost')}

Full documentation can be found on Read the Docs.

Installation

Installing django-heroku-redisify is easy:

pip install django-heroku-redisify

or download the source and run:

python setup.py install