It was pretty easy to get up and running, even without running Visual Studio (I used Xamarin Studio (Monodevelop) for everything). I think it was a lot easier to get setup than this blog post makes it seem. I installed everything via apt-get and only touched 2 or 3 config files in total.
The most confusing thing for me was what kind of ASP.NET project to create. I've never done any .NET web development before so the differences between a "Web Application", "MVC 2" and "MVC 3" project were not clear.
I haven't done any load testing yet but I'm hoping it is stable and can handle all our meager load on a single EC2 instance. I'm also running DynamoDb and Redshift for a full AWS stack.
After finally wrapping my head around ASP.NET MVC I think it has a lot more of a learning curve than a Python/Django type web app (my only other serious exposure to web apps). The way Django does routing, URL variables, and responses seems a lot more intuitive.
Asp.Net Web Forms Application is the original, and now derided, web framework. Consider it deprecated.
Asp.Net MVC Web Application is comparable to Rails / Django and the current version is 4.
The alternative to MS's MVC framework is FubuMVC [0] and is well respected.
Another alternative and is far more lightweight is NancyFX [1], .net's equivalent to ruby's sinatra [2].
I wish it was so in the enterprise world.
You may have memory usage problems http://stackoverflow.com/a/8766427/55209
I also ported my app to Nancy and load tested it as well. The performance was about the same and the memory usage grew as well but it seemed to eventually stop growing.
After reading a lot and trying (unsuccessfully) to make fastcgi-mono-server4 use mono-sgen I just gave up and went the console app self hosting route (using Nancy).
With self hosting my memory stays ultra low and doesn't grow. It also sped up the app quite significantly. My previous benchmarks were 10,000 requests served in 35-45 seconds (using fastcgi-mono-server4) and now I'm seeing 16-18 seconds (self hosting).
So yeah, self hosting is the way to go it seems.
I don't think you can reliably run ASP.NET applications on Linux. Or am I mistaken?
The key trade off is deciding if it is worth it to sacrifice compatibility with certain libraries for the development speed and costs of not having to learn an entirely new tech stack for yourself or your team.
As for running ASP.NET on Mono, I believe that both are mature and capable enough of running in a production environment. The mono website has a page listing various companies using Mono (some with ASP.NET): http://www.mono-project.com/Companies_Using_Mono
afaik there's not so much difference between a vps/virtual machine running Windows Server or Linux. I.e. for a cloud provider I'm using there's a difference of 5euro on a low level machine (30 euro) and same price for a more powerful machine (110euro for a 4 vcpu 8gb ram 50gb disk)
The KatanaProject [3], by MS, is a suite of projects for creating and hosting owin compatible web applications and is expected to see a v1 in the coming months. The ASP.NET (System.Web) host is already at v1[4](yes, asp.net can _host_ owin apps) and is used by SignalR [5,6] which is entirely OWIN based. Mono builds of KatanaProject are being worked on [7] (log on as guest). There are alternative non-MS hosts being developed, though not sure if any are serious projects yet.
A future version of ASP.NET MVC will support OWIN[8].
You can of course use .net alternate frameworks instead of ASP.NET, such as FubuMVC[9], Oak[10], NancyFX[11], ServiceStack[12]. I know that NancyFX and ServiceStack support mono (linux) as a first-class OT, concern.
OT, but you can even run node.js in-proc with OWIN based host.[13].
There is a lot going on in the .NET web app area!
[0] http://owin.org/
[2] http://dhickey.ie/post/2012/12/16/How-I-am-using-OWIN.aspx
[3] http://katanaproject.codeplex.com/
[4] http://nuget.org/packages/Microsoft.AspNet.SignalR.SystemWeb...
[5] http://nuget.org/packages/Microsoft.AspNet.Signalr
[7] http://teamcity.codebetter.com/project.html?projectId=projec...
[8] http://aspnet.uservoice.com/forums/41199-general-asp-net/sug...
[9] http://mvc.fubu-project.org/
[10] http://amirrajan.github.com/Oak/
[11] http://nancyfx.org/