summaryrefslogtreecommitdiffstats
path: root/settings_local.py.dist
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2010-06-07 21:19:50 -0400
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2010-06-07 21:19:50 -0400
commite215c1d15b049b04f7a2497c07d3c9a3f380638d (patch)
tree65257c6d9b55810f39a641edc1bb6dec2d474393 /settings_local.py.dist
parent57033196f904477631c397fab50681f0d1aa7834 (diff)
downloadaskbot-e215c1d15b049b04f7a2497c07d3c9a3f380638d.tar.gz
askbot-e215c1d15b049b04f7a2497c07d3c9a3f380638d.tar.bz2
askbot-e215c1d15b049b04f7a2497c07d3c9a3f380638d.zip
envelope turns on correctly for responses, but not for mentions yet, added urls for cache monitoring
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'