2006-02-24 14:07:01 +08:00
|
|
|
"""
|
|
|
|
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 backend URI
|
|
|
|
(e.g. "memcached://127.0.0.1:11211/") and returns an instance of a backend
|
|
|
|
cache class.
|
|
|
|
|
2010-12-21 23:19:19 +08:00
|
|
|
See docs/topics/cache.txt for information on the public API.
|
2006-02-24 14:07:01 +08:00
|
|
|
"""
|
2012-07-20 21:36:52 +08:00
|
|
|
try:
|
|
|
|
from urllib.parse import parse_qsl
|
|
|
|
except ImportError: # Python 2
|
|
|
|
from urlparse import parse_qsl
|
2012-03-31 18:34:11 +08:00
|
|
|
|
2010-12-21 23:19:19 +08:00
|
|
|
from django.conf import settings
|
|
|
|
from django.core import signals
|
|
|
|
from django.core.cache.backends.base import (
|
|
|
|
InvalidCacheBackendError, CacheKeyWarning, BaseCache)
|
2011-01-15 14:12:56 +08:00
|
|
|
from django.core.exceptions import ImproperlyConfigured
|
2010-12-21 23:19:19 +08:00
|
|
|
from django.utils import importlib
|
2013-02-03 05:58:02 +08:00
|
|
|
from django.utils.module_loading import import_by_path
|
|
|
|
|
2006-02-24 14:07:01 +08:00
|
|
|
|
2010-12-21 23:19:19 +08:00
|
|
|
__all__ = [
|
|
|
|
'get_cache', 'cache', 'DEFAULT_CACHE_ALIAS'
|
|
|
|
]
|
2006-02-24 14:07:01 +08:00
|
|
|
|
2008-07-26 02:51:32 +08:00
|
|
|
# Name for use in settings file --> name of module in "backends" directory.
|
|
|
|
# Any backend scheme that is not in this dictionary is treated as a Python
|
|
|
|
# import path to a custom backend.
|
2006-02-24 14:07:01 +08:00
|
|
|
BACKENDS = {
|
|
|
|
'memcached': 'memcached',
|
|
|
|
'locmem': 'locmem',
|
|
|
|
'file': 'filebased',
|
|
|
|
'db': 'db',
|
|
|
|
'dummy': 'dummy',
|
|
|
|
}
|
|
|
|
|
2010-12-21 23:19:19 +08:00
|
|
|
DEFAULT_CACHE_ALIAS = 'default'
|
|
|
|
|
2009-03-01 16:13:38 +08:00
|
|
|
def parse_backend_uri(backend_uri):
|
|
|
|
"""
|
|
|
|
Converts the "backend_uri" into a cache scheme ('db', 'memcached', etc), a
|
|
|
|
host and any extra params that are required for the backend. Returns a
|
|
|
|
(scheme, host, params) tuple.
|
|
|
|
"""
|
2006-02-24 14:07:01 +08:00
|
|
|
if backend_uri.find(':') == -1:
|
2010-01-11 02:36:20 +08:00
|
|
|
raise InvalidCacheBackendError("Backend URI must start with scheme://")
|
2006-02-24 14:07:01 +08:00
|
|
|
scheme, rest = backend_uri.split(':', 1)
|
|
|
|
if not rest.startswith('//'):
|
2010-01-11 02:36:20 +08:00
|
|
|
raise InvalidCacheBackendError("Backend URI must start with scheme://")
|
2006-02-24 14:07:01 +08:00
|
|
|
|
|
|
|
host = rest[2:]
|
|
|
|
qpos = rest.find('?')
|
|
|
|
if qpos != -1:
|
|
|
|
params = dict(parse_qsl(rest[qpos+1:]))
|
|
|
|
host = rest[2:qpos]
|
|
|
|
else:
|
|
|
|
params = {}
|
|
|
|
if host.endswith('/'):
|
|
|
|
host = host[:-1]
|
|
|
|
|
2009-03-01 16:13:38 +08:00
|
|
|
return scheme, host, params
|
|
|
|
|
2010-12-21 23:19:19 +08:00
|
|
|
if DEFAULT_CACHE_ALIAS not in settings.CACHES:
|
|
|
|
raise ImproperlyConfigured("You must define a '%s' cache" % DEFAULT_CACHE_ALIAS)
|
|
|
|
|
|
|
|
def parse_backend_conf(backend, **kwargs):
|
|
|
|
"""
|
|
|
|
Helper function to parse the backend configuration
|
|
|
|
that doesn't use the URI notation.
|
|
|
|
"""
|
|
|
|
# Try to get the CACHES entry for the given backend name first
|
|
|
|
conf = settings.CACHES.get(backend, None)
|
|
|
|
if conf is not None:
|
|
|
|
args = conf.copy()
|
2011-01-24 14:36:31 +08:00
|
|
|
args.update(kwargs)
|
2010-12-21 23:19:19 +08:00
|
|
|
backend = args.pop('BACKEND')
|
|
|
|
location = args.pop('LOCATION', '')
|
|
|
|
return backend, location, args
|
2008-07-26 02:51:32 +08:00
|
|
|
else:
|
2010-12-21 23:19:19 +08:00
|
|
|
try:
|
2011-07-05 17:10:58 +08:00
|
|
|
# Trying to import the given backend, in case it's a dotted path
|
2013-02-03 05:58:02 +08:00
|
|
|
backend_cls = import_by_path(backend)
|
|
|
|
except ImproperlyConfigured as e:
|
|
|
|
raise InvalidCacheBackendError("Could not find backend '%s': %s" % (
|
|
|
|
backend, e))
|
2010-12-21 23:19:19 +08:00
|
|
|
location = kwargs.pop('LOCATION', '')
|
|
|
|
return backend, location, kwargs
|
2006-02-24 14:07:01 +08:00
|
|
|
|
2010-12-21 23:19:19 +08:00
|
|
|
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 with the old URI-based notation::
|
|
|
|
|
|
|
|
cache = get_cache('locmem://')
|
|
|
|
|
|
|
|
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:
|
|
|
|
if '://' in backend:
|
|
|
|
# for backwards compatibility
|
|
|
|
backend, location, params = parse_backend_uri(backend)
|
|
|
|
if backend in BACKENDS:
|
|
|
|
backend = 'django.core.cache.backends.%s' % BACKENDS[backend]
|
|
|
|
params.update(kwargs)
|
|
|
|
mod = importlib.import_module(backend)
|
|
|
|
backend_cls = mod.CacheClass
|
|
|
|
else:
|
|
|
|
backend, location, params = parse_backend_conf(backend, **kwargs)
|
2013-02-03 05:58:02 +08:00
|
|
|
backend_cls = import_by_path(backend)
|
|
|
|
except (AttributeError, ImportError, ImproperlyConfigured) as e:
|
2010-12-21 23:19:19 +08:00
|
|
|
raise InvalidCacheBackendError(
|
|
|
|
"Could not find backend '%s': %s" % (backend, e))
|
2012-02-10 02:58:25 +08:00
|
|
|
cache = backend_cls(location, params)
|
|
|
|
# Some caches -- python-memcached in particular -- need to do a cleanup at the
|
2012-07-18 20:00:31 +08:00
|
|
|
# end of a request cycle. If not implemented in a particular backend
|
|
|
|
# cache.close is a no-op
|
|
|
|
signals.request_finished.connect(cache.close)
|
2012-02-10 02:58:25 +08:00
|
|
|
return cache
|
2010-12-21 23:19:19 +08:00
|
|
|
|
|
|
|
cache = get_cache(DEFAULT_CACHE_ALIAS)
|