Mono 和 C# IOCP:这是一个好主意吗?

发布于 2024-07-11 06:11:18 字数 124 浏览 5 评论 0原文

我正在将 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

流殇 2024-07-18 06:11:18

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).

不即不离 2024-07-18 06:11:18

你的目标是 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文