diff options
author | Jon Moss <maclover7@users.noreply.github.com> | 2016-09-07 18:29:15 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-07 18:29:15 -0400 |
commit | bd9532248679da53587fad9a7cd3a1b459cbdadb (patch) | |
tree | a08c56a99f8e48ecc3daceb588ba27a0608a9997 /guides | |
parent | 71f37ce4893f63da49e4854db945a8ccb0ae3f5c (diff) | |
parent | 5d3320933584b1ebd3c46a0bab9af5c2ba8a5f16 (diff) | |
download | rails-bd9532248679da53587fad9a7cd3a1b459cbdadb.tar.gz rails-bd9532248679da53587fad9a7cd3a1b459cbdadb.tar.bz2 rails-bd9532248679da53587fad9a7cd3a1b459cbdadb.zip |
Merge pull request #26426 from y-yagi/update_doc_about_default_cache_store
update doc about default `cache_store` [ci skip]
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`. |