From ba592950689a06893c77bc97040770f89dd5a317 Mon Sep 17 00:00:00 2001 From: Malcolm Tredinnick Date: Tue, 30 Sep 2008 03:58:09 +0000 Subject: Fixed #9221 -- Small optimisation to caching middleware handling. In the slightly unusual case that CACHE_MIDDLEWARE_SECONDS is set to 0, don't bother storing a copy in the local cache. git-svn-id: http://code.djangoproject.com/svn/django/trunk@9098 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/middleware/cache.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/django/middleware/cache.py b/django/middleware/cache.py index 28e878400a..3f602fe652 100644 --- a/django/middleware/cache.py +++ b/django/middleware/cache.py @@ -89,8 +89,9 @@ class UpdateCacheMiddleware(object): # max-age was set to 0, don't bother caching. return response patch_response_headers(response, timeout) - cache_key = learn_cache_key(request, response, timeout, self.key_prefix) - cache.set(cache_key, response, timeout) + if timeout: + cache_key = learn_cache_key(request, response, timeout, self.key_prefix) + cache.set(cache_key, response, timeout) return response class FetchFromCacheMiddleware(object): -- cgit v1.3