diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2007-12-16 23:10:48 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2007-12-16 23:10:48 +0000 |
commit | d8f2fea813ef46022cf828eb90b2af9c656854e0 (patch) | |
tree | 1accde8022e01ef5aab35ad8f3d54e2c53f32ea4 /railties/CHANGELOG | |
parent | 7af985f74fdaead950986038570f4d00befe7fc0 (diff) | |
download | rails-d8f2fea813ef46022cf828eb90b2af9c656854e0.tar.gz rails-d8f2fea813ef46022cf828eb90b2af9c656854e0.tar.bz2 rails-d8f2fea813ef46022cf828eb90b2af9c656854e0.zip |
Turned on ActionView::Base.cache_template_loading by default in config/environments/production.rb to prevent file system stat calls for every template loading to see if it changed (this means that you have to restart the application to see template changes in production mode) [DHH]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8416 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties/CHANGELOG')
-rw-r--r-- | railties/CHANGELOG | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/railties/CHANGELOG b/railties/CHANGELOG index 469f048a28..96f90abd48 100644 --- a/railties/CHANGELOG +++ b/railties/CHANGELOG @@ -1,6 +1,8 @@ *SVN* -* Introduce `rake generate:secret` to output a crytographically secure secret key for use with cookie sessions. #xxxx [update from Trac] +* Turned on ActionView::Base.cache_template_loading by default in config/environments/production.rb to prevent file system stat calls for every template loading to see if it changed (this means that you have to restart the application to see template changes in production mode) [DHH] + +* Introduce `rake secret` to output a crytographically secure secret key for use with cookie sessions #xxxx [update from Trac] * Fixed that local database creation should consider 127.0.0.1 local #9026 [parcelbrat] |