From 667fee8d15d5e6b897ce494baf7c330eabeba3ff Mon Sep 17 00:00:00 2001 From: Karl Hobley Date: Wed, 18 Mar 2015 22:15:49 +0000 Subject: [PATCH] Replaced django-redis-cache with django-redis Fixes #1068 --- docs/howto/performance.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/howto/performance.rst b/docs/howto/performance.rst index 57bac2131b..924e49d9f3 100644 --- a/docs/howto/performance.rst +++ b/docs/howto/performance.rst @@ -13,14 +13,14 @@ We have tried to minimise external dependencies for a working installation of Wa Cache ----- -We recommend `Redis `_ as a fast, persistent cache. Install Redis through your package manager (on Debian or Ubuntu: ``sudo apt-get install redis-server``), add ``django-redis-cache`` to your requirements.txt, and enable it as a cache backend:: +We recommend `Redis `_ as a fast, persistent cache. Install Redis through your package manager (on Debian or Ubuntu: ``sudo apt-get install redis-server``), add ``django-redis`` to your requirements.txt, and enable it as a cache backend:: CACHES = { 'default': { - 'BACKEND': 'redis_cache.cache.RedisCache', + 'BACKEND': 'django_redis.cache.RedisCache', 'LOCATION': '127.0.0.1:6379', 'OPTIONS': { - 'CLIENT_CLASS': 'redis_cache.client.DefaultClient', + 'CLIENT_CLASS': 'django_redis.client.DefaultClient', } } }