Over the weekend, we rolled out a few speed improvements to the Stack Overflow engine.

First, we did a quick pass with ANTS Profiler (which is great, by the way) and identified a few places where redundant or unnecessary database queries slipped into our code. We like to do this every few months on common pages as a sanity check. We start a trace, refresh a given page 50 times, then view the hot code paths in the trace. It’s almost always database queries gunking up the works, but once in a blue moon we’ll write code so bad that it actually registers in the hot code paths. Anyway, the golden rule is to measure, then optimize, and that’s what we try to do.

We also took a long, hard look at optimizing the browser cookies we’re sending down to clients (and thus, clients are dutifully sending back to us in each HTTP request). You’d be surprised how big an impact on performance cookies can be. We were able to remove our ASP.NET forms authentication cookie entirely, and cut the length of our standard cookie key in half. I also removed a number of cookies that the /login page was storing which weren’t really necessary. In my testing our typical cookie is about 360 bytes now, compared with over 500 bytes before. Over time, these old unnecessary cookies will fall away naturally, but you may want to clear your domain cookies manually if you want the fastest possible Stack Overflow family browsing experience.

This isn’t as new, but it’s worth mentioning. A few weeks ago, we turned up the HTTP GZIP compression level for dynamic content from the default of 0 to 4. That’s ever-so-slightly slower, but offers an additional 10% reduction in page size. The tradeoff between CPU performance and file size for this setting is documented in exhaustive detail by Scott Forsyth and the “sweet spot” is definitely 4.

(Another item that similarly isn’t new, but always a solid best practice, is to minify your JavaScript and CSS. We’ve had our build script set up to do this for months, using the Java based YUI Compressor.)

We’ve been long time users of YSlow, and more recently Google Page Speed. Some of the recommendations these tools make are only sensible if you are Google or Yahoo (a very rare and select club of the ‘gee, that’s a nice problem to have’ variety) — but many of them are indeed essential no matter how big your website is.

One of the last remaining YSlow / Page Speed recommendations that we felt was worth tackling was Use Cookie-free Domains for Components.

When the browser makes a request for a static image and sends cookies together with the request, the server doesn’t have any use for those cookies. So they only create network traffic for no good reason. You should make sure static components are requested with cookie-free requests. Create a subdomain and host all your static components there.

If your domain is www.example.org, you can host your static components on static.example.org. However, if you’ve already set cookies on the top-level domain example.org as opposed to www.example.org, then all the requests to static.example.org will include those cookies. In this case, you can buy a whole new domain, host your static components there, and keep this domain cookie-free. Yahoo! uses yimg.com, YouTube uses ytimg.com, Amazon uses images-amazon.com and so on.

Another benefit of hosting static components on a cookie-free domain is that some proxies might refuse to cache the components that are requested with cookies. On a related note, if you wonder if you should use example.org or www.example.org for your home page, consider the cookie impact. Omitting www leaves you no choice but to write cookies to *.example.org, so for performance reasons it’s best to use the www subdomain and write the cookies to that subdomain.

We registered the domain sstatic.net for this purpose a month ago, and I’m pleased to announce that all the static resources for the Stack Overflow family of websites are now hosted at sstatic.net. This domain is of course cookieless and optimized for serving static content with the lowest possible overhead (and, as before, a far-future expires header, so zero requests are made to the server for cached static elements).

Here’s a sample get / response for the new configuration.

GET /so/js/master.js?v=4143 HTTP/1.1
Host: sstatic.net
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.2)
            Gecko/20090729 Firefox/3.5.2 (.NET CLR 3.5.30729)
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 300
Connection: keep-alive
Referer: http://stackoverflow.com/questions/1252349
Pragma: no-cache
Cache-Control: no-cache

And the response from sstatic.net:

HTTP/1.1 200 OK
Cache-Control: max-age=604800
Content-Type: application/x-javascript
Content-Encoding: gzip
Last-Modified: Sun, 09 Aug 2009 18:45:13 GMT
Accept-Ranges: bytes
ETag: "75e6f1872119ca1:0"
Vary: Accept-Encoding
Server: Microsoft-IIS/7.0
Date: Sun, 09 Aug 2009 23:40:45 GMT
Content-Length: 10417
(... gzipped data ...)

Look, ma, no cookies! (yes, I’d love to kill the Server header and ETag header in the response, but that’s not so easy.)

Using another server for your static content is also a rudimentary form of load balancing; we’ve shaved off hundreds of thousands of requests from our primary servers and delegated them to another server explicitly optimized for and dedicated to that task. Web browsers also tend to “parallelize” their load patterns for the page when they see resources coming from different domains — or a different subdomain, at least.

Anyway, we believe that performance is a feature, and we’re serious about the Stack Overflow family of sites being as fast as we can make them. We continue to revisit our performance every couple of months and try to improve it a little more each time.

Stack Overflow is language and platform agnostic by design. We feel that building cool stuff is way more important the brand of screwdriver you used to build it. Argue all you want about which brand of screwdriver is better, but what really matters is the end result — what you’ve actually built with your screwdriver of choice.

screwdrivers

That said, we’ve been very open about the fact that Stack Overflow runs on a Microsoft development stack.

It’s OK to be proud of your stack if you aren’t a jerk or a bigot about it. We chose the Microsoft stack because we knew it intimately, and we all had years of development experience under our belts. We were also very much enamored of the ASP.NET MVC style of building websites, and IIS7. The .NET framework is quite fast and mature by now, with a nice 64-bit top to bottom toolchain supporting it. In short, we love our stack!

One downside of a Microsoft stack for a young, poor startup (have I mentioned that Stack Overflow was mostly funded out of my pocket?) is that, unlike the open source world, you have to pay for software licenses. This isn’t a big deal for the mega corporations that seem to make up most of Microsoft’s revenue. What’s a hundred thousand dollars in licensing fees when you have millions in income? Relative to how much it costs to pay human beings to do the work, it’s almost nothing. Startups, however, are running not so much on money, but on moxie.

moxie

Moxie is an essential ingredient in any startup, but it is sadly not legal tender for purchasing software licenses.

And Microsoft software licenses aren’t cheap, particularly the Windows Server licenses, and especially the SQL Server licenses, which are absolutely eye-poppingly expensive (think $10k and up). This is where Microsoft’s BizSpark program comes in:

bizspark-logo

  • No fees to join (though you do need a “network sponsor”)
  • Access to as many production Microsoft product licenses as you need, for free, for three years
  • MSDN Professional full access subscription to download the software

This is good for three years. At the end of that three year period:

  1. you have to pay $100
  2. you have to license the software you’re actually using

Basically, it’s a gamble that some startups will transform into successful businesses in a few years, businesses that don’t care when they have to spend less than 1% of their income on software licensing fees.

I don’t think BizSpark will magically turn startups who hate closed-source software into Steve Ballmer fans overnight. However, it’s a pretty nice option for developers who have skills in Microsoft development tools and are looking at running a lean, mean startup with legal licenses. The options before BizSpark were pretty dismal — Piracy? Grey market licenses? Co-opted MSDN keys?

Stack Overflow has been enrolled in BizSpark for a while now. Eligibility requirements are as follows:

  • In the business of software development
  • Privately held
  • In business for less than 3 years
  • Less than US $1 million in annual revenue

This isn’t a silver bullet that will magically close the chasm between open source and closed source toolsets. But it’s clearly a step in the right direction. I almost wish Microsoft had launched BizSpark five or ten years ago.

If you’d like to get started, check the BizSpark website. They also have a Twitter account which highlights some of the other startups involved, and includes this essential advice:

Bizspark friends please RT: if you need a invitation code to join Bizspark, just email BizSpark@microsoft.com, we will sign you up !

Given the weird “network partner” requirement, I’d give that a shot if this is at all a fit. What do you have to lose, other than all your open source street credibility?

This is the twenty-eighth episode of the StackOverflow podcast, where
Joel and Jeff discuss Windows Azure, SQL Server 2008 full text search, Bayesian filtering, porn detection, and project management — among other things.

  • Jeff met the inestimable Joey DeVilla aka Accordion Guy at PDC, who challenged him to pronounce Azure as in “Windows Azure”. My pronunciation reference for Azure is entirely based on the word appearing in the movie A Clockwork Orange.
  • Joel and I greatly enjoyed Corey Trager’s Jeff Atwood is Trying to Kill Me. We do try to exploit the Jewish / Goyish dynamic. Also, Jeff is sorry he tried to kill you, but glad you survived to write that highly entertaining article.
  • We are still struggling with SQL Server 2008 full text search issues. And yes, we have engaged with the SQL Server team on this.
  • Joel’s Inc. magazine article about Stack Overflow is now on newsstands (it’s the issue with Kevin Rose of Digg on the cover). The article is also online as well: How Hard Could It Be? The Unproven Path.
  • We have worked closely with Brent Ozar, who has singlehandedly took it upon himself to be our Stack Overflow database ninja. He’s gone far, far beyond what I would ever expect a volunteer to do — so we’ve added him as an official member of our virtual team. And if you need SQL Server expertise, Brent is your man.
  • Microsoft finally fixed their bizarre position on hotfixes. Instead of the bad old days of mandatory phone calls and requests, you can simply download the hotfix you need.
  • One limitation of Linq to SQL is that it does not support any SQL Server full text search predicates. Fortunately, we can freely intermix SQL strings and Linq syntax as much as we like.
  • Joel points out that Google uses Bayesian filtering the way Microsoft uses an if statement. We worry that Microsoft doesn’t adapt their software well enough to the wider internet world, as demonstrated by the radically differing approaches to spellcheck from both companies.
  • We aren’t clear what the purpose of Microsoft’s new “Oslo” or M modelling language, announced at PDC, is. More domain specific languages? Every developer becomes a language designer? Why does that scare me a little?
  • Ray Ozzie made specific reference to “architecture astronaut” at PDC, which is extra humorous because Joel was referring to Ozzie when he coined the term.
  • Joel remembers Hillel Cooperman, who used to be a star at Microsoft, but now works for Jackson Fish Market.
  • One Stack Overflow question we enjoyed this week: Showing too much ’skin’ detection in software. The definitive debunking of this technique is from Dan of Dan’s Data, who reviewed PORNsweeper in 2000. We don’t believe the technical landscape has changed since then. Great discussion on Stack Overflow as well.
  • Joel refers to the famous 1994 memo from Steve SinofskyCornell is WIRED! Steve started as Bill Gates’ assistant, and now he’s in charge of Windows 7 after shipping Office 2007.
  • Another Stack Overflow question we enjoyed this week: What do project managers do all day? We’re not sure why the owner keeps deleting this question, as we think the answers have a lot of value. Joel also has a lot to say on the general topic of project management.

If you’d like to submit a question to be answered in our next episode, record an audio file (90 seconds or less) and mail it to podcast@stackoverflow.com. You can record a question
using nothing but a telephone and a web browser. We also have a
dedicated phone number you can call to leave audio questions at
646-826-3879.

The transcript wiki for this episode is available for public editing.

 
icon for podpress  Standard Podcast [01:08:40m]: Play Now | Play in Popup | Download

I will be attending the Microsoft Professional Developers’ Conference this year, courtesy of Microsoft.

pdc-2008-logo

The main reason I am attending is to help Phil Haack deliver a session about ASP.NET MVC.

ASP.NET MVC: A New Framework for Building Web Applications

Monday, October 27th
3:30 pm — 4:45 pm
Room 153

Phil invited me to talk for 15 minutes about the real world use of ASP.NET MVC in stackoverflow.com, and I was happy to oblige him. Phil and I have been friends for a few years, so our relationship predates any of the business stuff.

If you’re attending PDC08 this year, maybe I’ll see you there — and definitely attend our session!

Update: the session Phil and I presented can now be viewed online. (Thanks Zack!)

This is the twenty-third episode of the StackOverflow podcast, wherein Joel and I discuss the following:

  • The Stack Overflow team will be in New York City from the 24th to the 28th. It’s partly business, and partly a reward to our team for their hard work on the site. What are some cool geeky things for us to do in NYC?
  • We wonder: do newscasters wear pants?
  • Joel describes his upcoming Inc. magazine article enumerating the seven development mistakes we made in building Stack Overflow. I think by seven he meant zero.
  • Most of the reviews of Cuil and Knol are negative because “I tried it for what it was intended to be used, and it didn’t work.”
  • The power of short informal code reviews in bridging the skill gap between beginning and expert software developers. Good developers think of this as self-preservation, because today’s beginner code is tomorrow’s code you’ll have to maintain.
  • There have been a lot of requests for a packaged, customized version of Stack Overflow, but we have some reservations about the difficulty of delivering a packaged solution, and whether the current design will scale down to smaller private communities at all.
  • Should trusted users be allowed to close questions? Or should the community simply vote them down? I argue we need both of these methods; Joel feels we ony need voting.
  • It’s ok to have some “fun” programming questions every now and then. It can’t be a community if you don’t stop every so often to have some (at least partially on topic) fun.

We also answered the following listener questions:

  1. “How do you handle newbie questions?”
  2. Richard: “How do you cultivate programmer mentoring at a small company?”

If you’d like to submit a question to be answered in our next episode, record an audio file (90 seconds or less) and mail it to podcast@stackoverflow.com. You can record a question using nothing but a telephone and a web browser.  We also have a dedicated phone number you can call to leave audio questions at 646-826-3879.

The transcript wiki for this episode is available for public editing.

 
icon for podpress  Standard Podcast [01:06:09m]: Play Now | Play in Popup | Download