From 7f36f897f8a934900b505c454c887428a6b2feb8 Mon Sep 17 00:00:00 2001 From: Pierre Dulac Date: Sat, 31 Oct 2015 00:22:55 +0100 Subject: [PATCH] Update the doc to reflect the new `IMAGEKIT_CACHE_BACKEND` behavior --- docs/configuration.rst | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/docs/configuration.rst b/docs/configuration.rst index 33b4f1f..f65ed52 100644 --- a/docs/configuration.rst +++ b/docs/configuration.rst @@ -44,11 +44,15 @@ Settings .. attribute:: IMAGEKIT_CACHE_BACKEND - :default: If ``DEBUG`` is ``True``, ``'django.core.cache.backends.dummy.DummyCache'``. - Otherwise, ``'default'``. + :default: ``'default'`` - The Django cache backend to be used to store information like the state of - cached images (i.e. validated or not). + The Django cache backend alias to retrieve the shared cache instance defined + in your settings, as described in the `Django cache section`_. + + The cache is then used to store information like the state of cached + images (i.e. validated or not). + +.. _`Django cache section`: https://docs.djangoproject.com/en/1.8/topics/cache/#accessing-the-cache .. attribute:: IMAGEKIT_CACHE_PREFIX