diff options
author | Zachary Scott <e@zzak.io> | 2015-02-16 15:21:52 -0800 |
---|---|---|
committer | Zachary Scott <e@zzak.io> | 2015-02-16 15:21:52 -0800 |
commit | de537263a70469248090b5c52686760f92386a9b (patch) | |
tree | 1ebb58d50b225516ff9b20788974c75065c93097 /guides | |
parent | a71350cae0082193ad8c66d65ab62e8bb0b7853b (diff) | |
download | rails-de537263a70469248090b5c52686760f92386a9b.tar.gz rails-de537263a70469248090b5c52686760f92386a9b.tar.bz2 rails-de537263a70469248090b5c52686760f92386a9b.zip |
Revert c732a66:
* "rm docs for dependency_loading and disable_dependency_loading config"
It was added back in a71350cae0082193ad8c66d65ab62e8bb0b7853b by @tenderlove
See also #13142
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/configuring.md | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/guides/source/configuring.md b/guides/source/configuring.md index 7e00b59f75..994cc31cff 100644 --- a/guides/source/configuring.md +++ b/guides/source/configuring.md @@ -88,6 +88,8 @@ application. Accepts a valid week day symbol (e.g. `:monday`). end ``` +* `config.dependency_loading` is a flag that allows you to disable constant autoloading setting it to false. It only has effect if `config.cache_classes` is true, which it is by default in production mode. + * `config.eager_load` when true, eager loads all registered `config.eager_load_namespaces`. This includes your application, engines, Rails frameworks and any other registered namespace. * `config.eager_load_namespaces` registers namespaces that are eager loaded when `config.eager_load` is true. All namespaces in the list must respond to the `eager_load!` method. @@ -995,6 +997,8 @@ Below is a comprehensive list of all the initializers found in Rails in the orde * `set_routes_reloader` Configures Action Dispatch to reload the routes file using `ActionDispatch::Callbacks.to_prepare`. +* `disable_dependency_loading` Disables the automatic dependency loading if the `config.eager_load` is set to true. + Database pooling ---------------- |