Просмотр исходного кода

Added extra protip to cache configuration

Ralfp 12 лет назад
Родитель
Сommit
31b270f144
1 измененных файлов с 2 добавлено и 0 удалено
  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',