aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG
diff options
context:
space:
mode:
authorMichael Koziarski <michael@koziarski.com>2007-09-09 00:18:55 +0000
committerMichael Koziarski <michael@koziarski.com>2007-09-09 00:18:55 +0000
commit80ff0b9f1c07eae7668680fd12335ffa218e53ac (patch)
tree42307295c7d16ee3a778ec74b6f3becb0b5fb2ab /actionpack/CHANGELOG
parent7ace0a654c46cf9ca57f42981c826eace21fa42c (diff)
downloadrails-80ff0b9f1c07eae7668680fd12335ffa218e53ac.tar.gz
rails-80ff0b9f1c07eae7668680fd12335ffa218e53ac.tar.bz2
rails-80ff0b9f1c07eae7668680fd12335ffa218e53ac.zip
Optimise named route generation when using positional arguments. Closes #9450 [Koz]
This change delivers significant performance benefits for the most common usage scenarios for modern rails applications by avoiding the costly trip through url_for. Initial benchmarks indicate this is between 6 and 20 times as fast. git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7421 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/CHANGELOG')
-rw-r--r--actionpack/CHANGELOG7
1 files changed, 7 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG
index fdf6fd7e8c..33cf662375 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -1,5 +1,12 @@
*SVN*
+* Optimise named route generation when using positional arguments. [Koz]
+
+ This change delivers significant performance benefits for the most
+ common usage scenarios for modern rails applications by avoiding the
+ costly trip through url_for. Initial benchmarks indicate this is
+ between 6 and 20 times as fast.
+
* Explicitly require active_record/query_cache before using it. [Jeremy Kemper]
* Fix layout overriding response status. #9476 [lotswholetime]