|
You may have noticed that most my webpage are loading bit faster. Here is what I did:
a) CSS code moved to its own file and included CSS at the top
b) Removed unnecessary (read as fancy web 2.0 stupid stuff) external javascript snippets
c) I’ve moved external javascript to bottom of page/template engine. For example google analytics JS code moved to bottom of webpage.
d) Turn on Apache gzip/mod_deflate compression
e) Turn on Wordpress caching
f) Turn on php script caching (eAccelerator)
g) Tweak MySQL for optimization. Turn on query cache and other settings.
h) If possible switch to lighttpd or use squid / lighttpd as caching server for old good Apache. At least, enable Apache's mod_cache module.
If you have tons of cash to burn (assuming that your web app demands performance):
- Consider using CDN (Content Delivery Network) such as Akamai or SAVVIS.
- Server load balancing
|