-
Website
http://www.codespatter.com -
Original page
http://codespatter.com/2009/04/23/how-to-speed-up-your-django-sites/ -
Subscribe
All Comments -
Community
-
Top Commenters
-
itjobs1
1 comment · 2 points
-
sikat ang pinoy
1 comment · 1 points
-
billymcclure
1 comment · 1 points
-
Ben Bangert
1 comment · 2 points
-
jakubmusil
1 comment · 1 points
-
-
Popular Threads
Great tutorial.
One other tip on the serving-static-files thing: move them off your server entirely and don't even use the processing power. Store them on S3. From there, you can use the CDN and map multiple subdomains to the content, so you can spread your requests across multiple subdomains.
The reason for this is that web browsers will not open more than N connections to a given domain. Mapping them across multiple subdomains means that an image/static-heavy page will open even more connections and load concurrently.