Updated the default view caching to 600, which is the django default instead of forcing the views to NEVER cache at all.

This commit is contained in:
Corey Oordt 2012-02-06 11:06:32 -05:00
parent f6c06a2bf6
commit 84f84e10c8

View file

@ -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': {},