mirror of https://github.com/rails/rails
[config guide] mention that to_prepare hooks are called upon every request in dev, but only once in production
This commit is contained in:
parent
876d3f23d2
commit
00751f0257
|
@ -461,7 +461,7 @@ Rails has 5 initialization events which can be hooked into (listed in the order
|
||||||
|
|
||||||
* +before_initialize+: This is run directly before the initialization process of the application occurs with the +:bootstrap_hook+ initializer near the beginning of the Rails initialization process.
|
* +before_initialize+: This is run directly before the initialization process of the application occurs with the +:bootstrap_hook+ initializer near the beginning of the Rails initialization process.
|
||||||
|
|
||||||
* +to_prepare+: Run after the initializers are ran for all Railties (including the application itself), but before eager loading and the middleware stack is built.
|
* +to_prepare+: Run after the initializers are ran for all Railties (including the application itself), but before eager loading and the middleware stack is built. More importantly, will run upon every request in +development+, but only once (during boot-up) in +production+ and +test+.
|
||||||
|
|
||||||
* +before_eager_load+: This is run directly before eager loading occurs, which is the default behaviour for the _production_ environment and not for the +development+ environment.
|
* +before_eager_load+: This is run directly before eager loading occurs, which is the default behaviour for the _production_ environment and not for the +development+ environment.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue