Added note about CONSTANCE_DATABASE_CACHE_BACKEND. Fixes #25.

This commit is contained in:
Jannis Leidel 2013-02-21 18:42:42 +01:00
parent 455088e695
commit b519aa4189

View file

@ -113,6 +113,17 @@ to enable this feature::
cross-process caching, because correct cache invalidation
can't be guaranteed.
Starting in Django 1.3 you can alternatively be the name of an entry of
the ``CACHES`` setting. E.g.::
CACHES = {
'default': {
'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache',
'LOCATION': '127.0.0.1:11211',
}
}
CONSTANCE_DATABASE_CACHE_BACKEND = 'default'
.. _django-picklefield: http://pypi.python.org/pypi/django-picklefield/
Usage