I need to use memcached and file based cache. I setup my cache in settings:

CACHES = {
    'default': {
        'BACKEND': 'django.core.cache.backends.filebased.FileBasedCache',
        'LOCATION': 'c:/foo/bar',
    },
    'inmem': {
        'BACKEND': 'django.core.cache.backends.dummy.DummyCache',
    }
}

dummy is temporary. Docs says:

cache.set('my_key', 'hello, world!', 30)
cache.get('my_key')

OK, but how can I now set and get cache only for 'inmem' cache backend (in future memcached)? Documentation doesn't mention how to do that.

link|improve this question

35% accept rate
feedback

2 Answers

up vote 6 down vote accepted
CACHES = {
  'default': {
    'BACKEND': 'django.core.cache.backends.filebased.FileBasedCache',
    'LOCATION': 'c:/foo/bar',
  },
  'inmem': {
    'BACKEND': 'django.core.cache.backends.dummy.DummyCache',
  }
} 

from django.core.cache import get_cache, cache
inmem_cache = get_cache('inmem')
default_cache = get_cache('default')
# default_cache == cache 
link|improve this answer
feedback

Unfortunately, you can't change which cache alias is used for the low-level cache.set() and cache.get() methods.

These methods always use 'default' cache as per line 51 (in Django 1.3) of django.core.cache.__init__.py:

DEFAULT_CACHE_ALIAS = 'default'

So you need to set your 'default' cache to the cache you want to use for the low-level cache and then use the other aliases for things like site cache, page cache, and db cache routing. `

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.