aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2007-02-18 06:44:20 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2007-02-18 06:44:20 +0000
commit90c1207c384a39567777bc58f2de38eb7df236d7 (patch)
treece8564a6ab9ab2b1954cc0c91e6865c02e333423 /actionpack/CHANGELOG
parent4fd84aae90e940b1a33429c4c5f9872fec777b80 (diff)
downloadrails-90c1207c384a39567777bc58f2de38eb7df236d7.tar.gz
rails-90c1207c384a39567777bc58f2de38eb7df236d7.tar.bz2
rails-90c1207c384a39567777bc58f2de38eb7df236d7.zip
Work around the two connection per host browser limit: use asset%d.myapp.com to distribute asset requests among asset[0123].myapp.com. Use a DNS wildcard or CNAMEs to map these hosts to your asset server. See http://www.die.net/musings/page_load_time/ for background.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6161 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/CHANGELOG')
-rw-r--r--actionpack/CHANGELOG2
1 files changed, 2 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG
index 07fc186fb1..2110d223f9 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*
+* Work around the two connection per host browser limit: use asset%d.myapp.com to distribute asset requests among asset[0123].myapp.com. Use a DNS wildcard or CNAMEs to map these hosts to your asset server. See http://www.die.net/musings/page_load_time/ for background. [Jeremy Kemper]
+
* Added default mime type for CSS (Mime::CSS) [DHH]
* Added that rendering will automatically insert the etag header on 200 OK responses. The etag is calculated using MD5 of the response body. If a request comes in that has a matching etag, the response will be changed to a 304 Not Modified and the response body will be set to an empty string. [DHH]