From cbd0a5edf5aee6721f6f3fcdf6d8d04035536178 Mon Sep 17 00:00:00 2001 From: ahmedbodi Date: Thu, 9 Jan 2014 09:38:48 +0000 Subject: [PATCH] MemCache --- conf/config_sample.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/conf/config_sample.py b/conf/config_sample.py index fd52406..85d29d2 100644 --- a/conf/config_sample.py +++ b/conf/config_sample.py @@ -191,3 +191,11 @@ NOTIFY_EMAIL_SERVER = 'localhost' # E-Mail Sender NOTIFY_EMAIL_USERNAME = '' # E-Mail server SMTP Logon NOTIFY_EMAIL_PASSWORD = '' NOTIFY_EMAIL_USETLS = True + +#### Memcache #### +# Memcahce is a requirement. Enter the settings below +MEMCACHE_HOST = "localhost" # hostname or IP that runs memcached +MEMCACHE_PORT = 11211 # Port +MEMCACHE_TIMEOUT = 900 # Key timeout +MEMCACHE_PREFIX = "stratum_" # Prefix for keys +