diff options
author | Ryan Bigg <radarlistener@gmail.com> | 2010-12-03 12:16:08 +1100 |
---|---|---|
committer | Ryan Bigg <radarlistener@gmail.com> | 2010-12-03 12:16:08 +1100 |
commit | 4d11af2e8fa76b32e7480938c85037d907da3ae9 (patch) | |
tree | a6a64bf9005c93140ef1fac2480adadc06ab7afd /railties/guides/source/configuring.textile | |
parent | 2e021ef477dd7d26ca6183b4e3113be3fcc6a5e1 (diff) | |
download | rails-4d11af2e8fa76b32e7480938c85037d907da3ae9.tar.gz rails-4d11af2e8fa76b32e7480938c85037d907da3ae9.tar.bz2 rails-4d11af2e8fa76b32e7480938c85037d907da3ae9.zip |
Config guide: clarify what cache_store defaults to.
Diffstat (limited to 'railties/guides/source/configuring.textile')
-rw-r--r-- | railties/guides/source/configuring.textile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/configuring.textile b/railties/guides/source/configuring.textile index 3ea9db2373..7475575e31 100644 --- a/railties/guides/source/configuring.textile +++ b/railties/guides/source/configuring.textile @@ -63,7 +63,7 @@ h4. Rails General Configuration * +config.cache_classes+ controls whether or not application classes should be reloaded on each request. Defaults to _true_ in development, _false_ in test and production. Can also be enabled with +threadsafe!+. -* +config.cache_store+ configures which cache store to use for Rails caching. Options include +:memory_store+, +:file_store+, +:mem_cache_store+ or the name of your own custom class. +* +config.cache_store+ configures which cache store to use for Rails caching. Options include +:memory_store+, +:file_store+, +:mem_cache_store+ or the name of your own custom class. Defaults to +:file_store+. * +config.colorize_logging+ specifies whether or not to use ANSI color codes when logging information. Defaults to _true_. |