diff options
-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 |