It is possible to use multiple cache backends with django? For example, I might want to use memcached for page output caching, and locmem:/// for custom low-level access to store long-lived large data objects and custom DB connections within my application.
So, could I set memcached as my CACHE_BACKEND and still safely use django.core.cache._LocMemCache directly? Thanks-in-advance, casey