diff --git a/django/core/cache/__init__.py b/django/core/cache/__init__.py index c136ce4f4d..93e7adb76e 100644 --- a/django/core/cache/__init__.py +++ b/django/core/cache/__init__.py @@ -17,6 +17,7 @@ See docs/cache.txt for information on the public API. from cgi import parse_qsl from django.conf import settings +from django.core import signals from django.core.cache.backends.base import InvalidCacheBackendError # Name for use in settings file --> name of module in "backends" directory. @@ -54,3 +55,10 @@ def get_cache(backend_uri): return getattr(module, 'CacheClass')(host, params) cache = get_cache(settings.CACHE_BACKEND) + +# 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) + diff --git a/django/core/cache/backends/memcached.py b/django/core/cache/backends/memcached.py index e25d7a10fb..fa0de8dab9 100644 --- a/django/core/cache/backends/memcached.py +++ b/django/core/cache/backends/memcached.py @@ -39,3 +39,7 @@ class CacheClass(BaseCache): def get_many(self, keys): return self._cache.get_multi(map(smart_str,keys)) + + def close(self, **kwargs): + self._cache.disconnect_all() +