83 lines
3.0 KiB
Python
83 lines
3.0 KiB
Python
"""
|
|
Caching framework.
|
|
|
|
This package defines set of cache backends that all conform to a simple API.
|
|
In a nutshell, a cache is a set of values -- which can be any object that
|
|
may be pickled -- identified by string keys. For the complete API, see
|
|
the abstract BaseCache class in django.core.cache.backends.base.
|
|
|
|
Client code should not access a cache backend directly; instead it should
|
|
either use the "cache" variable made available here, or it should use the
|
|
get_cache() function made available here. get_cache() takes a CACHES alias or a
|
|
backend path and config parameters, and returns an instance of a backend cache
|
|
class.
|
|
|
|
See docs/topics/cache.txt for information on the public API.
|
|
"""
|
|
from django.conf import settings
|
|
from django.core import signals
|
|
from django.core.cache.backends.base import (
|
|
InvalidCacheBackendError, CacheKeyWarning, BaseCache)
|
|
from django.core.exceptions import ImproperlyConfigured
|
|
from django.utils.module_loading import import_by_path
|
|
|
|
|
|
__all__ = [
|
|
'get_cache', 'cache', 'DEFAULT_CACHE_ALIAS', 'InvalidCacheBackendError',
|
|
'CacheKeyWarning', 'BaseCache',
|
|
]
|
|
|
|
DEFAULT_CACHE_ALIAS = 'default'
|
|
|
|
if DEFAULT_CACHE_ALIAS not in settings.CACHES:
|
|
raise ImproperlyConfigured("You must define a '%s' cache" % DEFAULT_CACHE_ALIAS)
|
|
|
|
|
|
def get_cache(backend, **kwargs):
|
|
"""
|
|
Function to load a cache backend dynamically. This is flexible by design
|
|
to allow different use cases:
|
|
|
|
To load a backend that is pre-defined in the settings::
|
|
|
|
cache = get_cache('default')
|
|
|
|
To load a backend with its dotted import path,
|
|
including arbitrary options::
|
|
|
|
cache = get_cache('django.core.cache.backends.memcached.MemcachedCache', **{
|
|
'LOCATION': '127.0.0.1:11211', 'TIMEOUT': 30,
|
|
})
|
|
|
|
"""
|
|
try:
|
|
# Try to get the CACHES entry for the given backend name first
|
|
try:
|
|
conf = settings.CACHES[backend]
|
|
except KeyError:
|
|
try:
|
|
# Trying to import the given backend, in case it's a dotted path
|
|
import_by_path(backend)
|
|
except ImproperlyConfigured as e:
|
|
raise InvalidCacheBackendError("Could not find backend '%s': %s" % (
|
|
backend, e))
|
|
location = kwargs.pop('LOCATION', '')
|
|
params = kwargs
|
|
else:
|
|
params = conf.copy()
|
|
params.update(kwargs)
|
|
backend = params.pop('BACKEND')
|
|
location = params.pop('LOCATION', '')
|
|
backend_cls = import_by_path(backend)
|
|
except (AttributeError, ImportError, ImproperlyConfigured) as e:
|
|
raise InvalidCacheBackendError(
|
|
"Could not find backend '%s': %s" % (backend, e))
|
|
cache = backend_cls(location, params)
|
|
# Some caches -- python-memcached in particular -- need to do a cleanup at the
|
|
# end of a request cycle. If not implemented in a particular backend
|
|
# cache.close is a no-op
|
|
signals.request_finished.connect(cache.close)
|
|
return cache
|
|
|
|
cache = get_cache(DEFAULT_CACHE_ALIAS)
|