diff options
author | Eugene Kenny <elkenny@gmail.com> | 2018-09-24 03:20:35 +0100 |
---|---|---|
committer | Eugene Kenny <elkenny@gmail.com> | 2018-09-24 03:20:35 +0100 |
commit | 3b954786e7876ad63c917ed1dae310624c8ccf33 (patch) | |
tree | 530548327316cf6c134b372fccc4dd820469ab49 /.gitattributes | |
parent | baffadaec9200d6653089f4937bfe53f1c0e127c (diff) | |
download | rails-3b954786e7876ad63c917ed1dae310624c8ccf33.tar.gz rails-3b954786e7876ad63c917ed1dae310624c8ccf33.tar.bz2 rails-3b954786e7876ad63c917ed1dae310624c8ccf33.zip |
Eagerly define attribute methods in production
The attribute methods for a model are currently defined lazily the first
time that model is instantiated, even when `config.eager_load` is true.
This means the first request to use each model incurs the cost, which
usually involves a database round trip to fetch the schema definition.
By defining the attribute methods for all models while the application
is booting, we move that work out of any individual request. When using
a forking web server, this also reduces the number of times the schema
definition is queried by doing it once in the parent process instead of
from each forked process during their first request.
Diffstat (limited to '.gitattributes')
0 files changed, 0 insertions, 0 deletions