diff options
author | Ryuta Kamizono <kamipo@gmail.com> | 2019-05-13 20:13:49 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-13 20:13:49 +0900 |
commit | 9854efd5ac6a05555cc73b21c98c37252eaef0a6 (patch) | |
tree | 3e339bd1387dd02ad4b6f9ce342ec1573e04b3e6 /guides | |
parent | 5daf3ae587dce9c7ec9397b4387f692b54535d27 (diff) | |
parent | 0e3b08ee702a1f3ef6612dce3238dc91a1405c87 (diff) | |
download | rails-9854efd5ac6a05555cc73b21c98c37252eaef0a6.tar.gz rails-9854efd5ac6a05555cc73b21c98c37252eaef0a6.tar.bz2 rails-9854efd5ac6a05555cc73b21c98c37252eaef0a6.zip |
Merge pull request #36269 from vishaltelangre/fix-ar-config-default
[skip ci] The default value of config.active_record.collection_cache_versioning without loading Railtie is false
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 e14da01538..407695ef8a 100644 --- a/guides/source/configuring.md +++ b/guides/source/configuring.md @@ -387,7 +387,7 @@ All these configuration options are delegated to the `I18n` library. to be reused when the object being cached of type `ActiveRecord::Relation` changes by moving the volatile information (max updated at and count) of the relation's cache key into the cache version to support recycling cache key. - Defaults to `true`. + Defaults to `false`. The MySQL adapter adds one additional configuration option: |