Browse Source

Added extra protip to cache configuration

Ralfp 12 years ago
parent
commit
31b270f144
1 changed files with 2 additions and 0 deletions
  1. 2 0
      deployment/settings.py

+ 2 - 0
deployment/settings.py

@@ -41,6 +41,8 @@ DATABASES = {
 # Misago is EXTREMELY data hungry
 # If you don't set any cache, it will BRUTALISE your database and memory
 # In production ALWAYS use cache
+# For reference read following document:
+# https://docs.djangoproject.com/en/dev/topics/cache/
 CACHES = {
     'default': {
         'BACKEND': 'django.core.cache.backends.dummy.DummyCache',