I’ve been remiss in not celebrating an important Stack Overflow milestone. Sometime on Wednesday, February 25th, a user asked..

Our 100,000th Question!

birthday-cake-animated

I didn’t say it was a good question, mind you. But it was the hundred thousandth question posted to Stack Overflow.

So, for reference — and remember our private beta started on 7/31/2008, and the public beta on 9/15/2008 — here’s how many questions and answers have been posted to date, by month:

Questions Answers
July 08 5 4
August 08 4,612 25,488
September 08 16,291 89,369
October 08 16,474 74,469
November 08 14,164 54,752
December 08 13,587 55,273
January 09 17,741 70,612
February 09* 15,941 60,397

We are pretty regularly doing 500k pageviews per day now. Geoff has also been tracking our bandwidth usage through the most excellent Cacti tool. Here’s what the last 24 hour period looks like:

soweb1-traffic-daily-cacti-graph

So far:

  • peak of 6 Mbit/sec or 750 KB/sec
  • average of 4 Mbit/sec or 512 KB/sec

That’s actually a lot for a site like ours which is nearly 100% text with precious few images.

And compressed text at that! We’ve had the GZIP religion for a long time, but last night we went through and double checked everything to be sure. I did some port 80 sniffing and found a few cases where content wasn’t served up compressed, even when the client asked for it. Looking for commonalities and doing research, I discovered that HTTP 1.0 traffic and proxy traffic wasn’t being compressed. Turns out those are both off by default in IIS 7. I turned them on like so:

%windir%\system32\inetsrv\appcmd set config
    /section:httpCompression /noCompressionForHttp10:false
%windir%\system32\inetsrv\appcmd set config
    /section:httpCompression /noCompressionForProxies:false

I was surprised how many proxies actually identify themselves as HTTP 1.0, given how ancient HTTP 1.1 is. It’s especially ironic considering many of these very same proxies asked for gzip content — I’m not sure GZIP compression is even valid under HTTP 1.0.

But I digress. Congratulations to everyone who has helped make Stack Overflow a success by asking and answering questions. Here’s to many more years of learning together!

* partial data up to Feb 24th

« Podcast #43
The Great Edit Wars »

23 Responses

  1. Mehrdad Afshari says:

    Thank YOU Jeff for starting such a great community!

  2. Jon Skeet says:

    I’m really surprised that the number of questions/answers has basically been steady over the last few months. I’d have expected significant exponential-style growth – it certainly *feels* like the site is getting more and more questions and answers.

    Interesting to note the massive number of answers in September, too. I wonder how many of those were “real” vs “experimentation” answers.

  3. Rory Becker says:

    How many users over that period?

    Which question was the 100,000th?

  4. DrJokepu says:

    Rory Becker:
    http://stackoverflow.com/questions/1000000

  5. DrJokepu says:

    +1 for the animated gif btw. I though they died a long time ago.

  6. Jeff Atwood says:

    > Which question was the 100,000th?

    Difficult to say because of soft deletions affecting the question count over time.

    Also, there is no prize :)

  7. Juan Manuel says:

    Will we ever run out of questions? What will happen when *all* programming information is on the site?

    How can we reverse entropy?

  8. George says:

    It’d be interesting to see a metric of ‘not-programming-related’ questions / ’subjective’ / ‘discussion’ questions vs. say, “C#” or “Java”. I know that isn’t a scientific indicator; but it’d still let us know how our questions are structured. Are people asking the ‘fun’ questions? Or are they asking the technical questions? How many questions per day are closed? How many users actively edit? How many users answer questions? How many questions are subsequently re-opened?

    These are all interesting questions to have answered, since they tell us the ‘demographic’ (for lack of a better word — maybe ‘technographic’?) of the site.

  9. DrJokepu says:

    > Will we ever run out of questions? What will happen when *all* programming information is on the site?

    I reckon we have already reached that point…

  10. Rob Allen says:

    > Will we ever run out of questions? What will happen when *all* programming information is on the site?

    Some new language will become popular with its own idiotic eccentricities and we can all talk about that. Plus the occasional C question.

  11. Dinah says:

    @DrJokepu:
    1000000 != 100000

    @Rory Becker:
    http://stackoverflow.com/questions/100000

  12. Nathan says:

    @Rob

    No one but Joel wants to know about C ;-)

  13. nobody says:

    @DrJokepu, @Dinah

    Since both questions and answers share IDs, what you’ve linked to is the 100,000th post, but not the 100,000th question. (If you look at the linked page, the answer was posted back in September)

  14. moron says:

    One of the things that may be dissuading questions are the vigilantes who jump on people who aren’t very knowledgeable and change the tags to “vague” and add snide comments.

  15. John Topley says:

    I was monitoring this at the time. I’m disappointed that there was no special badge for the 100,000th question!

  16. 1800 INFORMATION says:

    I think the 100000′th was this: http://stackoverflow.com/questions/587348/whats-the-correct-way-of-using-bitfields-in-c

    It is the first question that appears on the 10000′th page of questions.

  17. Euro Micelli says:

    >Will we ever run out of questions? What will happen when *all* programming information is on the site?
    >How can we reverse entropy?

    There is as yet insufficient data for a meaningful answer.

    (Check back again in another trillion years)

  18. mgb says:

    “set compression no compression false” What is it with MS and double negatives?
    It’s like the option to disable autoplay for drives in windows “disable selecting autoplay enabled = false”?

  19. Jason Punyon says:

    Congrats Jeff…see you at a million…

  20. Pop Catalin says:

    “Happy 100,000th Question!”

    Hurray!!!

    But how many answers are there in stackoverflow ?
    That’s much more important, imo.

  21. Pop Catalin says:

    nvm, there are roughly a half million answers :)

  22. blorg says:

    euro micelli, beat me to it :)

  23. Euro Micelli says:

    @blorg: I can’t believe no one else ‘got it’ for all of 14 hours. I guess nobody reads anymore. Their loss!

Leave a Reply