FREE THOUGHT · FREE SOFTWARE · FREE WORLD

Home » Optimization »  Top methods for Faster, Speedier web sites

Top methods for Faster, Speedier web sites

by Charles Torvalds 1 comment

[hide]

Read a great article about High Performace Web Site secrets on Skrentablog, called 14 rules for fast web pages. The list provided there is highly accurate and up-to-date.


List for Fast Web Pages

  1. Make fewer HTTP requests - Reducing 304 requests with Cache-Control Headers
  2. Use a CDN
  3. Use a customized php.ini - Creating and using a custom PHP.ini
  4. Add an Expires header - Caching with mod_expires on Apache
  5. Gzip components
  6. Put CSS at the top in head
  7. Move Javascript to the bottom
  8. Avoid CSS expressions, keep it simple
  9. Make CSS and unobtrusive Javascript as external files not inline
  10. Reduce DNS lookups - Use Static IP address, use a subdomain with static IP address for static content.
  11. Minimize Javascript - Refactor the code, compress with dojo
  12. Avoid external redirects - Use internal redirection with mod_rewrite, The correct way to redirect with 301
  13. Turn off ETags - Prevent Caching with htaccess
  14. Make AJAX cacheable and small

Sources & References

The full talk has details on what all of these mean in practice.


Recommendations

I recommend the article Speed Up Sites with htaccess caching to reduce the number of HTTP Requests. I also recommend hosting your static cacheable files on a separate subdomain, like static.askapache.com instead of www.askapache.com. You will also need to implement a version control system using mod_rewrite.


June 1st, 2007

Comments Welcome

My Online Tools

Related Articles
Twitter

  • askapache: Today in 1965 DEC announces PDP-8
  • hubail: RT @askapache: Make sure you unplug your Ethernet when leaving the room, or disable wifi
  • askapache: Make sure you unplug your Ethernet when leaving the room, or disable wifi
  • askapache: My servers, and me, are getting annoyed. Fail2ban works fairly well against all the Chinese brute forcing going on
  • askapache: Can't the Chinese stop ordering their hackers to hack us? Ugh
  • askapache: All I want for my bday is a bottle of American whiskey :)
  • askapache: The first Dino fossil wasn't found until 1822, we sure are young

My Picks
Newest Posts

WordPress Development
Hacking and Hackers

The use of "hacker" to mean "security breaker" is a confusion on the part of the mass media. We hackers refuse to recognize that meaning, and continue using the word to mean someone who loves to program, someone who enjoys playful cleverness, or the combination of the two. See my article, On Hacking.
-- Richard M. Stallman






It's very simple - you read the protocol and write the code. -Bill Joy

Except where otherwise noted, content on this site is licensed under a Creative Commons Attribution 3.0 License, just credit with a link.
This site is not supported or endorsed by The Apache Software Foundation (ASF). All software and documentation produced by The ASF is licensed. "Apache" is a trademark of The ASF. NCSA HTTPd.
UNIX ® is a registered Trademark of The Open Group. POSIX ® is a registered Trademark of The IEEE.

Site Map | Contact Webmaster | License and Disclaimer | Terms of Service

↑ TOPMain