Mono 和 C# IOCP:这是一个好主意吗?
我正在将 C++ 应用程序移植到在其服务器上使用 IOCP 的 C#。
mono 可以像 windows 一样处理 IOCP 吗? 我会获得与 C++ 相当的性能还是应该尝试其他方法?
谢谢
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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
IOCP 的主要开销是 IO,而不是语言。 您应该期望 C# 代码具有与 C++ 相同的性能(考虑到 Mono 所处的成熟状态)。
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).
你的目标是 Windows 的单声道吗? 如果是 Linux,则有不同的异步 I/O 模型,而不是完成端口。 我认为单声道开发者尽了最大努力来支持它。
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.