aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authoryuuji.yaginuma <yuuji.yaginuma@gmail.com>2018-09-14 16:39:54 +0900
committeryuuji.yaginuma <yuuji.yaginuma@gmail.com>2018-09-14 16:39:54 +0900
commitd3c73ae5e4ebabdf6c79e490fddb2cbfb0de3b76 (patch)
tree216d60892d135e9c8aab4c9004e8b4c0e4ff7b92 /guides
parentd2812d9a9e05a72374b9f7b32bab508b087f12b7 (diff)
downloadrails-d3c73ae5e4ebabdf6c79e490fddb2cbfb0de3b76.tar.gz
rails-d3c73ae5e4ebabdf6c79e490fddb2cbfb0de3b76.tar.bz2
rails-d3c73ae5e4ebabdf6c79e490fddb2cbfb0de3b76.zip
Add `:redis_cache_store` to `config.cache_store` options [ci skip]
Diffstat (limited to 'guides')
-rw-r--r--guides/source/configuring.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/configuring.md b/guides/source/configuring.md
index 4c508f77f1..0ff6f48c14 100644
--- a/guides/source/configuring.md
+++ b/guides/source/configuring.md
@@ -69,7 +69,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`.
+* `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`, `:redis_cache_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`.