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.
|
|
|
|
|
|
|
|
See docs/cache.txt for information on the public API.
|
|
|
|
"""
|
|
|
|
|
2010-10-10 01:32:20 +08:00
|
|
|
try:
|
2010-10-20 21:07:06 +08:00
|
|
|
# The mod_python version is more efficient, so try importing it first.
|
|
|
|
from mod_python.util import parse_qsl
|
2010-10-10 01:32:20 +08:00
|
|
|
except ImportError:
|
2010-10-20 21:07:06 +08:00
|
|
|
try:
|
|
|
|
# Python 2.6 and greater
|
|
|
|
from urlparse import parse_qsl
|
|
|
|
except ImportError:
|
|
|
|
# Python 2.5, 2.4. Works on Python 2.6 but raises
|
|
|
|
# PendingDeprecationWarning
|
|
|
|
from cgi import parse_qsl
|
2010-10-10 01:32:20 +08:00
|
|
|
|
2006-02-24 14:07:01 +08:00
|
|
|
from django.conf import settings
|
2008-08-17 07:35:58 +08:00
|
|
|
from django.core import signals
|
2010-09-13 02:45:26 +08:00
|
|
|
from django.core.cache.backends.base import InvalidCacheBackendError, CacheKeyWarning
|
2009-03-19 00:55:59 +08:00
|
|
|
from django.utils import importlib
|
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',
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
|
|
|
|
def get_cache(backend_uri):
|
|
|
|
scheme, host, params = parse_backend_uri(backend_uri)
|
2008-07-26 02:51:32 +08:00
|
|
|
if scheme in BACKENDS:
|
2009-03-19 00:55:59 +08:00
|
|
|
name = 'django.core.cache.backends.%s' % BACKENDS[scheme]
|
2008-07-26 02:51:32 +08:00
|
|
|
else:
|
2009-03-19 00:55:59 +08:00
|
|
|
name = scheme
|
|
|
|
module = importlib.import_module(name)
|
2010-09-27 05:36:22 +08:00
|
|
|
return module.CacheClass(host, params)
|
2006-02-24 14:07:01 +08:00
|
|
|
|
|
|
|
cache = get_cache(settings.CACHE_BACKEND)
|
2008-08-17 07:35:58 +08:00
|
|
|
|
|
|
|
# Some caches -- pythont-memcached in particular -- need to do a cleanup at the
|
|
|
|
# end of a request cycle. If the cache provides a close() method, wire it up
|
|
|
|
# here.
|
|
|
|
if hasattr(cache, 'close'):
|
|
|
|
signals.request_finished.connect(cache.close)
|
|
|
|
|