A short while back the book Building Scalable Web Sites came out on Safari. The book is written by Cal Henderson, one of the main people behind Flickr. As I’m currently involved in building a Web application (local.ch) I was interested to learn a few lessons by the Flickr people. Okay, Flickr is not beating any speed records right now, but it’s still an incredibly big application with tons of users and data.
Management review: the book is worth a read.
Technical short review: the book covers a lot of stuff a bit and nothing extremely well.
The book does not completely live up to it’s title as scaling is only part of the book. It seems more to be a list of lessons learned while building Flickr.
That’s also the reason for one of the book’s main deficiencies: it’s mostly PHP and MySQL only. But it also includes enough lessons that can be applied in other environments for it to be useful.
A short chapter by chapter review follows.
- Introduction: Doesn't need a review.
- Web Application Architecture: Interesting notes about building the architecture of your application. Including parts about hardware and networking.
- Development Environments: A few quick tips about using source control, deployment, testing, etc. Stuff that's covered a lot better and in more depth in many other places.
- i18n, L10n, and Unicode: Notes about internationalizing an application, translating, etc. If you have worked with Unicode before there is not much new information here.
- Data Integrity and Security: Filter all your input and output. Good for Cal that he includes this, because too many Web developers still fail at this. And many other books don't include it so all new new legions of Web developers come out without this knowledge.
- Email: Flickr does Email handling for moblogging. As I wrote that part for the KAYWA weblogs I know how frustrating this can be. That's why section 6.7 is titled "Mobile Carriers Hate You". All in all the chapter mainly covers dealing with incoming email including how to handle attachments.
- Remote Services: Interesting information about how to handle remote services and also communication in your application. I found section 7.5 particularly interesting where Cal describes an asynchronous service and how they implemented it for the photo uploads on Flickr.
- Bottlenecks: Preparing you for the scaling chapter. How you identify where your application is slow.
- Scaling Web Applications: The chapter that set the book's title. A lot of information but in my opinion it doesn't go deep enough.
- Statistics, Monitoring, and Alerting: Basically only explains a few tools for gathering statistics of the system. The section on alerting could just as well have been left out.
- APIs: How to publish your content with a few APIs. RSS, Atom and Web Services are the buzz words that describe this chapter.
All in all I have mixed feelings about this book. It's nothing earth-shattering but certainly worth a read. If you can read it online on Safari it's well worth to be added to your library for a while. If you have to shell out the money for that book, you will have to decide for yourself whether you can learn enough from it for it to be worth the money. It wouldn't have been worth it for me.