aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source
diff options
context:
space:
mode:
authorTeng Siong Ong <siong1987@gmail.com>2012-05-03 03:28:32 -0500
committerTeng Siong Ong <siong1987@gmail.com>2012-05-03 03:28:32 -0500
commit7273adabed9a3a7aa04014e50ec0ad077ee364aa (patch)
tree8989a2a15f49c1f1efb2829096e4332969e4cba0 /guides/source
parent36720af42995c8bac06ea7187e2c5768f89c2783 (diff)
downloadrails-7273adabed9a3a7aa04014e50ec0ad077ee364aa.tar.gz
rails-7273adabed9a3a7aa04014e50ec0ad077ee364aa.tar.bz2
rails-7273adabed9a3a7aa04014e50ec0ad077ee364aa.zip
cache_store has an extra option of :null_store.
Diffstat (limited to 'guides/source')
-rw-r--r--guides/source/configuring.textile2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/configuring.textile b/guides/source/configuring.textile
index 68426221bf..66e453c3ff 100644
--- a/guides/source/configuring.textile
+++ b/guides/source/configuring.textile
@@ -70,7 +70,7 @@ NOTE. The +config.asset_path+ configuration is ignored if the asset pipeline is
* +config.action_view.cache_template_loading+ controls whether or not templates should be reloaded on each request. Defaults to whatever is set for +config.cache_classes+.
-* +config.cache_store+ configures which cache store to use for Rails caching. Options include one of the symbols +:memory_store+, +:file_store+, +:mem_cache_store+, or an object that implements the cache API. Defaults to +:file_store+ if the directory +tmp/cache+ exists, and to +:memory_store+ otherwise.
+* +config.cache_store+ configures which cache store to use for Rails caching. Options include one of the symbols +:memory_store+, +:file_store+, +:mem_cache_store+, +:null_store+, or an object that implements the cache API. Defaults to +:file_store+ if the directory +tmp/cache+ exists, and to +:memory_store+ otherwise.
* +config.colorize_logging+ specifies whether or not to use ANSI color codes when logging information. Defaults to true.