aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides
diff options
context:
space:
mode:
authorRyan Bigg <radarlistener@gmail.com>2010-12-03 12:16:08 +1100
committerRyan Bigg <radarlistener@gmail.com>2010-12-03 12:16:08 +1100
commit4d11af2e8fa76b32e7480938c85037d907da3ae9 (patch)
treea6a64bf9005c93140ef1fac2480adadc06ab7afd /railties/guides
parent2e021ef477dd7d26ca6183b4e3113be3fcc6a5e1 (diff)
downloadrails-4d11af2e8fa76b32e7480938c85037d907da3ae9.tar.gz
rails-4d11af2e8fa76b32e7480938c85037d907da3ae9.tar.bz2
rails-4d11af2e8fa76b32e7480938c85037d907da3ae9.zip
Config guide: clarify what cache_store defaults to.
Diffstat (limited to 'railties/guides')
-rw-r--r--railties/guides/source/configuring.textile2
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_.