I'm porting a c++ app to c# that uses IOCP on it's server.

Can mono handle IOCP as well as windows? will i get comparable performance to c++ or i should try something else?

thanks

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

The main overhead in IOCP is the IO not the language. You should expect the same performance from the C# code as in C++ (Given the mature state that Mono is in).

link|improve this answer
You should NOT expect the same performance as IOCP must be implemented in the operating system. Linux uses an incompatible pattern of dealing with IO. – Jack Wester Jan 20 at 12:16
feedback

Do you target mono for windows? If it is linux then there is a different async i/o model, not completion ports. I assume mono developers did their best to support it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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