vote up 2 vote down star

C# looks great because it is a compiled language which seems to run quite well without too much CPU and does not consume too much memory. And StackOverflow and ServerFault are good examples of an MVC/.Net/C# stack that scales.

C# is also interesting because despite being compiled, it still has a lot of advanced features as a language only found on slower interpreted language.

My server being Linux only (Ubuntu 8.04 LTS), I am wondering if installing Mono in place of the .Net framework is a good idea for production use.

I currently do not have any existing applications using .Net but I am interested in using existing frameworks (like MS MVC).

flag
Just for clarification: Technically, C# isn't a traditional "compiled" to machine code language but a "compiled" to byte code which is interpreted by the run-time to execute machine code. – Bryan Bailliache Jul 3 at 13:19
1  
Further clarification: the byte code is not interpreted, it is compiled into machine code before execution. – skolima Jul 3 at 16:01
Even further clarification : the C# code, even if compiled in 2 stages, in the end is compiled into machine code :P – Andrei Rinea Aug 14 at 16:24

4 Answers

vote up 7 vote down

Here is the answer given by Mono creator: Is Mono ready for prime time?.

link|flag
vote up 4 vote down

ASP.Net MVC is now open source. That it is now integrated into MonoDevelop via an add in would suggest that you are likely to get things working.

Given the very new status of this you should expect issues. This blog should be a reasonable starting point for you.

Remember that many ASP.Net MVC tutorials assume you have a sql server back end, this is unlikely to be feasible (given your question) so bear that in mind.

link|flag
vote up 2 vote down

You'll have to judge it on a feature basis. At my current customer we're running a high-volume document processing and delivery system written in .NET 3.5. We have a Linux server that runs Mono with .NET components that take care of the delivery of documents to the outside world, e.g. through FTP. That runs fine in production.

We did run into a problem with the Mono implementation of the .NET FTP component, which forced us to look for other third party .NET components, which solved the problem. So you might run into things like these. But in our case: once we got it to work, it worked just fine and stable.

link|flag
Good stuff, thanks for that. – yar Jul 30 at 20:23
vote up 4 vote down

Stable enough and fast enough to do what?

It will have different levels of stability and performance depending on what you want to do, I'm sure. For example, one of my Protocol Buffers unit tests (which uses Rhino.Mocks) manages to make the Mono VM abort with an assertion error - but I have no idea (currently) of whether that would affect anything else I'm doing, or whether it's just related to the form of proxying being used.

I suggest you try it and see.

link|flag

Your Answer

Get an OpenID
or

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