From 84f84e10c83023a7015ac1368b0141b4e8dfbf3d Mon Sep 17 00:00:00 2001 From: Corey Oordt Date: Mon, 6 Feb 2012 11:06:32 -0500 Subject: [PATCH] Updated the default view caching to 600, which is the django default instead of forcing the views to NEVER cache at all. --- categories/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/categories/settings.py b/categories/settings.py index 0f8678a..9fc2837 100644 --- a/categories/settings.py +++ b/categories/settings.py @@ -5,7 +5,7 @@ from django.db.models import Q DEFAULT_SETTINGS = { 'ALLOW_SLUG_CHANGE': False, - 'CACHE_VIEW_LENGTH': 0, + 'CACHE_VIEW_LENGTH': 600, 'RELATION_MODELS': [], 'M2M_REGISTRY': {}, 'FK_REGISTRY': {},