Has anyone used Mono, the open source .NET implementation on a large or medium sized project? I'm wondering if it's ready for real world, production environments. Is it stable, fast, compatible, ... enough to use? Does it take a lot of effort to port projects to the Mono runtime, or is it really, really compatible enough to just take of and run already written code for Microsoft's runtime?
|
feedback
|
|
I've used it for a number of internal and commercial projects with great success. My warnings:
Good luck! Edit: The reason I say not to compile your own from source (release or SVN) is that it's easy to configure it differently than release binaries and hide bugs, for instance in the garbage collection. Edit 2: Forgot to answer the second part to your question. In my case, I had no issues with porting code, but I wasn't using any MS-specific libraries (WinForms, ASP.NET, etc). If you're only using System.* stuff, you'll be fine; beyond that, you may run into issues. Mono 2.0 is quite solid, though. | ||||
|
feedback
|
|
I find Mono to be mostly binary compatible with MS. Hence I simply compile with MS, and run anywhere, like Java is meant to be! The performance of Mono on Linux is getting very close to MS, as little as 2 times slower in some cases, vs 5-10 times slower when running Mono on Windows (but you should really stick to MS then). | ||||
|
feedback
|
|
If you are doing ASP.NET 2.0 work, it works very well. Winforms may work, but it can cause display issues. If you want compatibility in a forms app, I would suggest GTK#, as it is crossplatform. Like suggested, as long as you thouroughly test, I would agree to using it commercially if that is a viable option for you, unless it is winforms you need. In my opinion, i would stay away from it for now. And forget WPF as there is no support at this time, and there may never be (although they are working on moonlight, aka silverlight for linux) | |||
|
feedback
|
|
I haven't used Mono myself but you may be interested to know that FogBugz uses Mono to provide Lucene.NET on Linux platforms. (I only know this because Joel mentioned it in passing in Stack Overflow Podcast #24.) | |||
feedback
|
|
I've used it for encryption/decryption tools and it worked fine. In the future, I would consider using Mono/C#, but I would not expect it to be 100% exactly like .Net on Windows. | |||
|
feedback
|
|
I've got a bunch of shell apps in production. I agree with @cody-brocious, write a lot of unit tests. I found in the past that Regular Expressions didn't work exactly the same way as the windows CLR. It's actually simplier than you think to get into, just compile and run. If you use NAnt on your projects its even easier to transition. I typically install mono from the source releases and I haven't had any problems. | |||
|
feedback
|
|
Of course, you can, especially after Mono 2.0 has been released. Mono 2.0, is ready for real projects. | |||
|
feedback
|
|
I had some experience with Mono. Pure .NET stuff (like business logic, controllers or algorithms) can be ported without any problems. Yet, weird things start showing up in the components that interact with operating system, UI, services or persistence. So be prepared for some debugging and hacking. Things that might help:
Although in the present, there are some companies going into production with Mono, I'd still wait before rushing in there due to:
PS: if there is a company offering fully managed cloud computing solution (not just a VM, but more like Hadoop equivalent for .NET), then I'll be forced to jump in despite these issues. | |||
|
feedback
|