summaryrefslogtreecommitdiffstats
path: root/settings_local.py.dist
diff options
context:
space:
mode:
Diffstat (limited to 'settings_local.py.dist')
-rwxr-xr-xsettings_local.py.dist6
1 files changed, 2 insertions, 4 deletions
diff --git a/settings_local.py.dist b/settings_local.py.dist
index fc6815da..d6f537fb 100755
--- a/settings_local.py.dist
+++ b/settings_local.py.dist
@@ -29,11 +29,9 @@ DATABASE_ENGINE = '' #mysql, etc
DATABASE_HOST = ''
DATABASE_PORT = ''
-#set this value to 'dummy://' if you don't want to use cache, or set up your favourite caching mechanism
+#setup memcached for production use!
#see http://docs.djangoproject.com/en/1.1/topics/cache/ for details
-#example (set local file system cache in a cache folder in the root of the askbot install):
-#CACHE_BACKEND = 'file://%s' % os.path.join(os.path.dirname(__file__),'cache').replace('\\','/')
-CACHE_BACKEND = 'dummy://'
+CACHE_BACKEND = 'locmem://'
#If you use memcache you may want to uncomment the following line to enable memcached based sessions
#SESSION_ENGINE = 'django.contrib.sessions.backends.cache_db'