This question keeps coming up a lot on Stack Overflow for some reason:
What was Stack Overflow built with?
Some even wondered if Stack Overflow was built in Ruby on Rails. I consider that a compliment!
This question has been covered in some detail in our podcasts, of course, but I know not everyone has time to listen to a bunch of audio footage to find the answer to their question. So, in that spirit, here’s the technology “stack” of Stack Overflow, the stuff Jarrod, Geoff, and I used to build it:
| framework | Microsoft ASP.NET (version 3.5 SP1) |
| language | C# |
| development environment | Visual Studio 2008 Team Suite |
| web framework | ASP.NET MVC |
| browser framework | JQuery |
| database | SQL Server 2008 |
| data access layer | LINQ to SQL |
| source control | Subversion |
| compare tool | Beyond Compare 3 |
| source control integration | VisualSVN 1.5 |
We have a few other minor dependencies as well, such as ReCaptcha, DotNetOpenId, and the WMD control (which we subsequently rewrote), but that’s about it.
As I work on the badge implementation for Stack Overflow, I needed a way to call the code that detects and awards the badges out of band. Traditionally this is done by something like cron or scheduled tasks. I’d rather have the code stay inside our current codebase, though.
I asked on Twitter and got some good responses, everything from “write a service” to “use threads”. I also got a link to Simulate a Windows Service using ASP.NET to run scheduled jobs. Now this is interesting — it’s just simple enough to work:
- At startup, add an item to the
HttpRuntime.Cachewith a fixed expiration. - When cache item expires, do your work, such as
WebRequestor what have you. - Re-add the item to the cache with a fixed expiration.
The code is quite simple, really:
private static CacheItemRemovedCallback OnCacheRemove = null;
protected void Application_Start(object sender, EventArgs e)
{
AddTask("DoStuff", 60);
}
private void AddTask(string name, int seconds)
{
OnCacheRemove = new CacheItemRemovedCallback(CacheItemRemoved);
HttpRuntime.Cache.Insert(name, seconds, null,
DateTime.Now.AddSeconds(seconds), Cache.NoSlidingExpiration,
CacheItemPriority.NotRemovable, OnCacheRemove);
}
public void CacheItemRemoved(string k, object v, CacheItemRemovedReason r)
{
// do stuff here if it matches our taskname, like WebRequest
// re-add our task so it recurs
AddTask(k, Convert.ToInt32(v));
}
Works well in my testing; badges are awarded every 60 seconds like clockwork for all users.


