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.



August 9th, 2009 at 4:44 pm
Thanks for the analysis. I’ve always been a fan of YSlow. Minification in the build process is also a great idea that Iill try out in the future.
August 9th, 2009 at 4:49 pm
Looks good, thanks for sharing the tweaks!
August 9th, 2009 at 4:59 pm
As for “performance is a feature”, there is a great article about Amazon (yes, I know, Amazon is in that “if you’re Google or Yahoo” league) that has this nice punchline of “Amazon found that +100 ms increase in response time equaled -1% sales”, or if you want more concrete numbers, “every extra millisecond the page takes to load costs Amazon.com almost six million lost dollars in revenue”:
http://www.drunkenfist.com/304/2008/12/29/why-front-end-performance-matters-to-everyone/
http://www.uiandus.com/2009/02/05/theories/amazon-milliseconds-means-money/
Normally I would recommend using a more lightweight web server than IIS to get rid of the headers and to reduce the load even more by simply not having to load so many unnecessary features (like authentication), but I think that is not a good idea as IIS is at least proven in high-load situations.
August 9th, 2009 at 5:01 pm
YSlow has helped us change our perception of web site performance dramatically over the last 12 months. It’s a fundamental tool in providing an exciting user experience. A _must_ tool in any developers arsenal, IMO.
Also .. no chance in having another look at http://yuicompressor.codeplex.com/ again? (yeah, blatant plug).
August 9th, 2009 at 5:26 pm
@Pure Krome – after battling with MSBuild for this sstatic.net change, we’re a bit loath to touch the script, especially as the compression part of the build is working perfectly.
I can’t promise that we will use your .NET compression library on the Q&A sites, but we’ll give it a try on something we’re working on now – SOMETHING STUPENDOUS!
August 9th, 2009 at 6:12 pm
So you didn’t just buy an additional machine?
August 9th, 2009 at 7:28 pm
Hey Jeff,
As reddit recently learned, minifying and gzipping your JS might actually decrease performance:
http://www.reddit.com/tb/98aie
Also, if you slap haproxy in front of your IIS server, you might be able to use that to just drop the Server and ETag from your response with little to no performance hit, while gaining some other advantages too, like the ability to drop connections that are taking too long.
August 9th, 2009 at 7:33 pm
Jeremy, Packer is something else entirely. It’s not at all the same as minifying and gzipping.
(it basically implements its own compression *in JavaScript* which is a special kind of .. er .. crazy)
August 9th, 2009 at 8:28 pm
Hey Jeff,
I was at a presentation the other month by Mads Kristensen (http://madskristensen.net/) all about performance with ASP.NET.
He stated that Deflate is actually faster in the .NET framework than Gzip (if using the built in stream libraries).
Could be interesting to see if that’s another way to squeeze out a touch of performance.
August 9th, 2009 at 9:15 pm
@Aaron indeed..
http://stackoverflow.com/questions/388595/why-use-deflate-instead-of-gzip-for-text-files-served-by-apache
August 9th, 2009 at 10:02 pm
@Jarrod Dixon : Cheers! Any sites that could give it a go would be awesome :) Would love to see if it has some good millage in some prod build systems :)
If you ever do get a chance to give it a roll, Jarrod, please post any feedback on the codeplex sub-site. The more feedback, then closer I can get it to being helpful to peeps :) (and more so from the time you first gave it a quick go, without much luck).
August 9th, 2009 at 10:30 pm
@Jeff – so how come the choice to stick with Gzip?
August 9th, 2009 at 11:55 pm
This is awesome. Thanks for sharing this!
This makesme want to ask more questions!
If you’re serving your static content from one server, don’t you want ETag’s there? That seems like exactly what they’re designed for. Even for ASPX / CSS / JavaScript, ETag’s are supposed to facilitate browser caching, and Yahoo’s just recommending removing them for webfarms, right? I’m just confused here.
Did you do anything specific to your static server to optimize for static conten?
I noticed you’re using querystrings to version your Javascript references. Do you have some slick system to handle those version numbers?
I heard that sissies play seafoam green plastic bass guitars? I heard that from a lot of people, but I thought I’d ask.
August 10th, 2009 at 12:30 am
Thanks for tips. We’ve been gradually make a number of these changes at LocateTV, compression, minifying and hosting static stuff on another server. One of the things we haven’t done is go cookieless on the static stuff because our cookies are set to .locatetv.com instead of www. I hadn’t thought of registering a new domain as a solution – an excellent idea.
One of the changes we made recently was to combine all our js (including all jQuery plugins and other 3rd party code) into a single file at build time. We then minify the combined file (using ! for comment sections that have license details so they don’t get stripped) so the are much fewer HTTP requests. This, along with some pretty mind bending spriting (CSS offset madness!) really has helped with the overall performance of the site.
August 10th, 2009 at 12:35 am
Won’t using a far-future Expires header (and no in-URL versioning) for images cause problems if you want to change your images?
(Eg. http://sstatic.net/so/img/so/logo.png, or http://sstatic.net/so/Img/stats-arrow.gif)
Will you just use a new filename if you need to make changes to an image, or do you have a different plan?
August 10th, 2009 at 1:07 am
@RichieHindle
<link rel=”stylesheet” href=”http://sstatic.net/so/all.css?v=4166″>
August 10th, 2009 at 1:12 am
We make extensive use of App_Themes which from my understanding will not allow the offloading of its static content.
Any advice there?
August 10th, 2009 at 5:34 am
Thanks Jeff. I really love how fast StackOverflow is. Pages load and render almost instantly. At work, I have to support SharePoint, and people keep trying to convince themselves that our SharePoint users will be satisfied with 5-6 second page loads. I don’t think they will be. Speed is a killer feature.
August 10th, 2009 at 6:55 am
I can definitely see the speed improvement. It runs *much* faster than before…
… mainly because sstatic.net is blocked here.
I guess that’s not necessarily a bad thing, though.
August 10th, 2009 at 7:09 am
You missed the woot image:
/content/img/badge-enthusiast.gif
August 10th, 2009 at 9:26 am
I actually wrote a Yui Compressor handler for .Net that Compresses+Concats+Caches on the fly, no building required:
http://gist.github.com/130913
It can be useful if you’re working on a .Net site that isn’t configured to build to a DLL or if you just want to change your CSS and JS without recompiling.
August 10th, 2009 at 9:26 am
Check out the book “Even Faster Web Sites: Performance Best Practices for Web Developers”. The author has also an earlier book. It has some good tips. (I am not sure but the author might be YSlow’s author or is a dev in that Yahoo’s team)
http://www.amazon.com/Even-Faster-Web-Sites-Performance/dp/0596522304/ref=sr_1_1?ie=UTF8&s=books&qid=1249921345&sr=8-1
August 10th, 2009 at 11:44 am
> mainly because sstatic.net is blocked here.
Why / how is this domain blocked? And how do we get it unblocked at your place of employment?
August 10th, 2009 at 11:54 am
@Jeff
Ah yes. Reading comprehension fail. You wrote “minify”, but I read “pack”.
The haproxy trick might still be helpful though. :)
August 10th, 2009 at 12:32 pm
> Why / how is this domain blocked? And how do we get it unblocked at your place of employment?
It is whitelist-based (as far as I can tell). Any site that isn’t on The List Of Acceptable Content Types is automatically blocked. So it’s possible that it could get unblocked, but just hasn’t had time to be noticed and categorized yet. (The message says: “Your request to access the website “http://sstatic.net/” was denied because of its content categorization: “none”". )
I don’t even know who’s in charge of the firewall; this is a big place and I’m relatively new.
Anyway, I can still read, edit, and (probably) answer; I just can’t comment or vote to close/delete, and it looks incredibly ugly.
August 10th, 2009 at 6:23 pm
>Why / how is this domain blocked? And how do we get it unblocked at your place of employment?
My company blocks everything by default. We have to specifically request it to be unblocked.
August 11th, 2009 at 9:06 pm
@mmyers:
>… mainly because sstatic.net is blocked here.
I .. .i .. Ii.. . . I can’t stop laughing heheheh
I’m sorry to hear that .. .h hehehe .. ohhh
You definitely make my day I can go to sleep now.
If that’s websense make sure you don’t stare at the logo, is causes it may damage your brain after a few months ( I still have nightmares about it …Websense… : – S )
August 12th, 2009 at 7:51 am
Ah, sstatic.net has finally made it through the firewall. (I wonder if the IT guys use SF, or how else would they have noticed it?)
August 13th, 2009 at 9:39 pm
Rather than using the domain “sstatic.net”, you should get an even better performance boost by referencing the public IP address of the server with the static content. The browser wouldn’t need to perform a DNS lookup for “sstatic.net”. This would be a significant improvement for users with slow DNS servers.
If the server changes IP addresses, you would just update a web application configuration instead of a DNS entry. Bookmarking these static objects wouldn’t work, but I doubt anyone would care to bookmark referenced JavaScript, CSS, or graphics files.
August 17th, 2009 at 9:36 am
Why application/x-javascript ?
application/javascript has been standardized for a long time now in RFC 4329.
See http://tools.ietf.org/html/rfc4329#page-10
September 17th, 2009 at 5:30 am
public class ServerEtagHeadersRemover : IHttpModule
{
private const string _etagKey = “ETag”;
private const string _serverKey = “Server”;
public void Init(HttpApplication context)
{
context.PreSendRequestHeaders += context_PreSendRequestHeaders;
}
static void context_PreSendRequestHeaders(object sender, EventArgs e)
{
if (DoesTheKeyExists(_etagKey, HttpContext.Current.Response.Headers.Keys))
{
HttpContext.Current.Response.Headers.Remove(_etagKey);
}
if (DoesTheKeyExists(_serverKey, HttpContext.Current.Response.Headers.Keys))
{
HttpContext.Current.Response.Headers.Remove(_serverKey);
}
}
private static bool DoesTheKeyExists(string key, IEnumerable keyCollection)
{
return keyCollection.Cast().Contains(key);
}
public void Dispose()
{
}
}
Add this module to your IIS module list and it will remove your ETag and Server Header.
Regards
September 23rd, 2009 at 11:14 pm
Ugg Boots–More Fashion Or Just A Trend Now?
–>Several years ago, a new popular wind has been blowing the nation. Some adored it while others are amazed and confused by its success. This fashion trend is known as the Ugg boots. Although an unattractive appearance, Uggs has gained a huge following among all fans. Not only they are extremely trendy,but also their features to keep feet warm in cold day and cool in summer.
–>But Uggs is more than just sheepskin boots; it has casual uggs, slippers as well as handbags and other accessories. Ugg cardy, Ugg Short, Ugg Tall, .Classic ugg boots are comfortable, stylish, and great to wear in any occasion. Ugg slippers are warm and comforting that both indoor or outside is ok . Ugg also offers a full line of high-quality handbags and backpacks to match your Uggs. A pair of Ugg boots, matched Ugg handbag is the perfect shows.
–>Why Be Fashionable – Why Not? This fashion style, perfect deductived by famous stars, had blow up a fashion to imitate of wearing UGGs, to perfectly match with long jeans, minipants, skirts,etc.
–>With Kate Winslet, "Declaimer," "Revolutionary Road," two outstanding performances in the film won the Golden Globe for best supporting actress and best leading actress in the film drama category, won several Oscar nominations . She was photographed shoed a pair of UGGs, with her daughter the same impersonation. And reporters caught Hayden Panettiere at a vegetarian Thai restaurant on Melrose Avenue in Los Angeles. Hayden sported a denim hot pants and Ugg boots.
–>Ugg Boots–Is More Fashion Or Just A Trend Now?
–>The Ugg boot is made with sheepskin instead of regular leather which helps you stay cool in the summer and keeps you warm and dry in the winter making it the perfect boots to wear in all seasons.
–>No matter is fashion or just a tread now, it also can be your style that makes you be more fashion mastering trend pop. With it, you will feel comfortable, look trendy, and be the envy of everyone around you. I don’t have permission to require you finding the ugg boots at goodugg.co.uk, but shout out if you find them!
November 12th, 2009 at 2:26 pm
I’ve been reading into using a sub-domain/separate domain for static content, as inspired by sstatic.net
Today when profiling several sites using Fiddler, I noticed you’re not hosting a favicon.ico (on sstatic.net) – Yahoo recommends one (http://developer.yahoo.com/performance/rules.html#favicon) to prevent all of the 404 responses the client will receive.
I tried creating an “empty” favicon.ico file (0 bytes) and this appears to have worked, reducing the load times for content served.
Maybe you’d notice even more of a speed increase with this?