Performance Evaluation: Remember the Milk
If you aren't familiar with Remember the Milk, it is a totally awesome web-based to-do list manager. I use it religiously and recommend it to all my friends.
The site is beautifully designed and very heavy with javascript. It uses ajax for everything and their server is extremely fast. It is very well implemented and they did almost everything right with their implementation. Going down the list of major things they did right...
- Gzipping the resources: They enabled gzipping. That is probably the easiest thing to do with the biggest bang for the buck. If you are using apache, which you probably are, then it is a very simple configuration change to enable mod_deflate.
- Minify the javascript: They compile their site's javascript files into a single file called rtm.{version}.js and minify it. That is a great practice and I highly recommend it. Adding the version number into the name is an excellent practice as well. That is critical to using far-future expires headers.
- Far-future expires headers: They added them to all the site's javascript, which makes up a significant portion of the total download. Doesn't help the first page load, but all subsequent access are all cached. Awesome.