django-cache-manager icon indicating copy to clipboard operation
django-cache-manager copied to clipboard

Must define a 'defaut' cache in your CACHE setting.

Open Iazzetta opened this issue 7 years ago • 1 comments

When I try this:

CACHES = {
    'django_cache_manager.cache_backend': {
        'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache',
        'LOCATION': '127.0.0.1:11211',
    }
}

I get this:

(caches.E001) You must define a 'default' cache in your CACHES setting.

Iazzetta avatar Sep 14 '17 17:09 Iazzetta

You need to define a default cache in your django project settings in addition to the above the namespace.

vijaykatam avatar Sep 19 '17 16:09 vijaykatam