diff options
author | Teng Siong Ong <siong1987@gmail.com> | 2012-05-03 03:28:32 -0500 |
---|---|---|
committer | Teng Siong Ong <siong1987@gmail.com> | 2012-05-03 03:28:32 -0500 |
commit | 7273adabed9a3a7aa04014e50ec0ad077ee364aa (patch) | |
tree | 8989a2a15f49c1f1efb2829096e4332969e4cba0 | |
parent | 36720af42995c8bac06ea7187e2c5768f89c2783 (diff) | |
download | rails-7273adabed9a3a7aa04014e50ec0ad077ee364aa.tar.gz rails-7273adabed9a3a7aa04014e50ec0ad077ee364aa.tar.bz2 rails-7273adabed9a3a7aa04014e50ec0ad077ee364aa.zip |
cache_store has an extra option of :null_store.
-rw-r--r-- | guides/source/configuring.textile | 2 |
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. |