Recently I've been in situations where I was responsible to pick the technology stack. I look at current needs, possible future needs and flexibility. Also consider other factors like team's familiarity with the technologies (given everything else equal) and possibly the cost when it may be the only differentiating factor.

To learn by example if I look at a real world situation, Stack Overflow, I see they use ASP.NET. To me that means it will always only be hosted on Windows servers and paying for tools; counter-parts of which are available for free in the open-source realm. To reaffirm what's possible with these free tools I may look at Facebook, Google et. al.

I'm sure there was good reasoning done before deciding upon ASP.NET. But I'm missing why ASP.NET was chosen over other alternatives, technically speaking?

link|improve this question

ASP.NET has a huge support community. – Jon Martin Aug 26 '11 at 18:19
I agree with Wer2's answer. If you're working for a startup, check out Microsoft BizSpark (www.bizspark.com) which will give you tons of licenses for free for three years. Oh, and StackOverflow is built with ASP.NET MVC3, which is based on ASP.NET, but has a very different (and IMHO much better) approach than WebForms, which is often confused with ASP.NET. – mnemosyn Aug 26 '11 at 18:48
feedback

closed as off topic by Jay Riggs, Justin Niessner, vcsjones, Jerry Coffin, 0A0D Aug 26 '11 at 21:50

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

1 Answer

up vote 1 down vote accepted

There are a variety of reasons why a company may go with one technology over another, and they are not all technical.

Some things to consider are:

  • Technical skill of your current developers - if everyone in your team knows one technology it is expensive to train everyone in a new way
  • Cost of software - for some shops spending lots of money on software licenses can really eat into the budget, but usually the license cost is minimal compared to the cost of man hours
  • Technical skill of new hires - does the community in your area have a large base of developers that support one technology? Then it might be advantageous to switch so it is easier to bring people onto your team.
  • Existing infrastructure - does the company already have servers running a technology? Then it might be lower cost than you think to use the same.
  • Need for customization - If you think about the Google example, they have server farms running custom Linux kernels with custom programs on top of them, but that is not needed for most things.

So the answer may be that Technically Speaking there is no reason, and a lot of decisions are made because the Technical aspect is not the most important at the time. If I only expect 100,000 users and my technology handles 1 million, why build for 1 billion?

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.