diff options
author | yuuji.yaginuma <yuuji.yaginuma@gmail.com> | 2016-09-08 07:21:28 +0900 |
---|---|---|
committer | yuuji.yaginuma <yuuji.yaginuma@gmail.com> | 2016-09-08 07:22:50 +0900 |
commit | 5d3320933584b1ebd3c46a0bab9af5c2ba8a5f16 (patch) | |
tree | b137540618cd1fd9bd78da21f017b61e53a52cdb /guides | |
parent | 06658f1d9db580ff570d783db30fd241a041e3b5 (diff) | |
download | rails-5d3320933584b1ebd3c46a0bab9af5c2ba8a5f16.tar.gz rails-5d3320933584b1ebd3c46a0bab9af5c2ba8a5f16.tar.bz2 rails-5d3320933584b1ebd3c46a0bab9af5c2ba8a5f16.zip |
update doc about default `cache_store` [ci skip]
The default `cache_store` has changed in 8f0e0b6 to use `file_store`.
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/configuring.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/configuring.md b/guides/source/configuring.md index 9cec5ec452..fbf3c27957 100644 --- a/guides/source/configuring.md +++ b/guides/source/configuring.md @@ -71,7 +71,7 @@ These configuration methods are to be called on a `Rails::Railtie` object, such * `config.beginning_of_week` sets the default beginning of week for the application. Accepts a valid week day symbol (e.g. `:monday`). -* `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.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`. * `config.colorize_logging` specifies whether or not to use ANSI color codes when logging information. Defaults to `true`. |