Guest User

Untitled

a guest
Feb 9th, 2016
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. CACHES = {
  2. 'default': {
  3. 'BACKEND': 'django.core.cache.backends.filebased.FileBasedCache',
  4. 'LOCATION': '/var/tmp/django_cache',
  5. }
  6. }
  7.  
  8. MIDDLEWARE_CLASSES = (
  9. 'django.middleware.cache.UpdateCacheMiddleware',
  10. ....
  11. 'django.middleware.cache.FetchFromCacheMiddleware',
  12. )
Add Comment
Please, Sign In to add comment