diff options
| author | Claude Paroz <claude@2xlibre.net> | 2012-04-29 20:45:55 +0200 |
|---|---|---|
| committer | Claude Paroz <claude@2xlibre.net> | 2012-04-29 20:47:36 +0200 |
| commit | eefb00f30124f775ca52258ccd8549054fe8230f (patch) | |
| tree | 1232483e7daaf56735c45e2ffb96f8d8f991b259 /django | |
| parent | 5b644a5464e9612138dd7061abd386433bdc09f0 (diff) | |
Fixed #18220 -- Removed the CACHE_BACKEND setting, as per official deprecation timeline.
Thanks Ramiro Morales for the review.
Diffstat (limited to 'django')
| -rw-r--r-- | django/conf/global_settings.py | 7 | ||||
| -rw-r--r-- | django/core/cache/__init__.py | 36 |
2 files changed, 4 insertions, 39 deletions
diff --git a/django/conf/global_settings.py b/django/conf/global_settings.py index a88ea409f6..4711baad66 100644 --- a/django/conf/global_settings.py +++ b/django/conf/global_settings.py @@ -464,11 +464,12 @@ SESSION_FILE_PATH = None # Directory to store ses # CACHE # ######### -# New format +# The cache backends to use. CACHES = { + 'default': { + 'BACKEND': 'django.core.cache.backends.locmem.LocMemCache', + } } -# The cache backend to use. See the docstring in django.core.cache for the -# possible values. CACHE_MIDDLEWARE_KEY_PREFIX = '' CACHE_MIDDLEWARE_SECONDS = 600 CACHE_MIDDLEWARE_ALIAS = 'default' diff --git a/django/core/cache/__init__.py b/django/core/cache/__init__.py index d8095d4e51..8f07f13d3a 100644 --- a/django/core/cache/__init__.py +++ b/django/core/cache/__init__.py @@ -64,42 +64,6 @@ def parse_backend_uri(backend_uri): return scheme, host, params -if not settings.CACHES: - legacy_backend = getattr(settings, 'CACHE_BACKEND', None) - if legacy_backend: - import warnings - warnings.warn( - "settings.CACHE_* is deprecated; use settings.CACHES instead.", - DeprecationWarning - ) - else: - # The default cache setting is put here so that we - # can differentiate between a user who has provided - # an explicit CACHE_BACKEND of locmem://, and the - # default value. When the deprecation cycle has completed, - # the default can be restored to global_settings.py - settings.CACHE_BACKEND = 'locmem://' - - # Mapping for new-style cache backend api - backend_classes = { - 'memcached': 'memcached.CacheClass', - 'locmem': 'locmem.LocMemCache', - 'file': 'filebased.FileBasedCache', - 'db': 'db.DatabaseCache', - 'dummy': 'dummy.DummyCache', - } - engine, host, params = parse_backend_uri(settings.CACHE_BACKEND) - if engine in backend_classes: - engine = 'django.core.cache.backends.%s' % backend_classes[engine] - else: - engine = '%s.CacheClass' % engine - defaults = { - 'BACKEND': engine, - 'LOCATION': host, - } - defaults.update(params) - settings.CACHES[DEFAULT_CACHE_ALIAS] = defaults - if DEFAULT_CACHE_ALIAS not in settings.CACHES: raise ImproperlyConfigured("You must define a '%s' cache" % DEFAULT_CACHE_ALIAS) |
