diff options
author | Rafael França <rafaelmfranca@gmail.com> | 2018-04-02 16:27:21 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-02 16:27:21 -0400 |
commit | 9facd9a9039d9f9697c78ddb57c6685cb27e78ea (patch) | |
tree | 2fd0d317f82cc3577d6f1d6b93e35432861ef648 /guides/source | |
parent | 073168358740b33831f0963242ba1de1d0ddb0cc (diff) | |
parent | eede8d8130558cb46aba8736bd63e8a28e37eac2 (diff) | |
download | rails-9facd9a9039d9f9697c78ddb57c6685cb27e78ea.tar.gz rails-9facd9a9039d9f9697c78ddb57c6685cb27e78ea.tar.bz2 rails-9facd9a9039d9f9697c78ddb57c6685cb27e78ea.zip |
Merge pull request #32418 from urbanautomaton/disable-template-finalizer-in-test
Disable ActionView::Template finalizers in test environment
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/configuring.md | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/guides/source/configuring.md b/guides/source/configuring.md index 8bdba4b3de..7d5ca4b8a7 100644 --- a/guides/source/configuring.md +++ b/guides/source/configuring.md @@ -600,6 +600,13 @@ Defaults to `'signed cookie'`. * `config.action_view.default_enforce_utf8` determines whether forms are generated with a hidden tag that forces older versions of Internet Explorer to submit forms encoded in UTF-8. This defaults to `false`. +* `config.action_view.finalize_compiled_template_methods` determines + whether the methods on `ActionView::CompiledTemplates` that templates + compile themselves to are removed when template instances are + destroyed by the garbage collector. This helps prevent memory leaks in + development mode, but for large test suites, disabling this option in + the test environment can improve performance. This defaults to `true`. + ### Configuring Action Mailer There are a number of settings available on `config.action_mailer`: |