diff options
author | Seb Bacon <seb.bacon@gmail.com> | 2010-11-26 16:54:01 +0000 |
---|---|---|
committer | Seb Bacon <seb.bacon@gmail.com> | 2010-11-26 16:54:01 +0000 |
commit | 952bc858fe649361c01994ae89841aa2a6a05091 (patch) | |
tree | 1de3613d85ba60f9651b35e076408c9f5ea403da | |
parent | d6457250f05b69c36444f8a15b8dad205d1330cf (diff) |
document the memcaching config options a bit
-rwxr-xr-x | INSTALL.txt | 7 | ||||
-rw-r--r-- | config/memcached.yml-example | 8 |
2 files changed, 12 insertions, 3 deletions
diff --git a/INSTALL.txt b/INSTALL.txt index e67ae89c9..a057d840b 100755 --- a/INSTALL.txt +++ b/INSTALL.txt @@ -147,7 +147,12 @@ And send us the patch! 7. Set up configs ----------------- -copy config/general-example to config/general and edit to your taste. +For overall application settings, copy config/general-example to config/general and edit to your taste. + +You'll also want to copy config/memcached.yml-example to +config/memcached.yml. The application is configured, via the Interlock +Rails plugin, to cache content using memcached. You probably don't +want this in your development profile. 8. Mailer setup --------------- diff --git a/config/memcached.yml-example b/config/memcached.yml-example index fe89b71fc..e5d486674 100644 --- a/config/memcached.yml-example +++ b/config/memcached.yml-example @@ -3,9 +3,13 @@ defaults: sessions: false client: memcache-client development: - servers: - - 127.0.0.1:11211 # Default host and port + disabled: true + # servers: + # - 127.0.0.1:11211 # Default host and port production: servers: - 127.0.0.1:11211 # Default host and port + # debug: true + # memory: 256 + # benchmarking: false |