(self, request, response)
| 80 | return caches[self.cache_alias] |
| 81 | |
| 82 | def _should_update_cache(self, request, response): |
| 83 | return hasattr(request, "_cache_update_cache") and request._cache_update_cache |
| 84 | |
| 85 | def process_response(self, request, response): |
| 86 | """Set the cache, if needed.""" |