构建在 Windows 和 Linux 上运行的基于跨平台异步事件的服务器要使用哪个库?

发布于 2024-12-03 13:52:39 字数 408 浏览 0 评论 0原文

阅读这篇精彩的文章后,我不确定如何构建可以具有良好性能的简单跨平台服务器作为基于Linux单事件的服务器。我不明白可以吗? boost aio 是正确的工具吗?还有其他工具吗?
我使用 C++ 作为编程。

typedef struct {
  unsigned long* Internal;
  unsigned long* InternalHigh;
  union {
    struct {
      WORD Offset;
      WORD OffsetHigh;
    };
    void* Pointer;
  };
  HANDLE hEvent;
} OVERLAPPED;

after reading this great article im not sure how can i build simple cross platform server that can be has good as linux single event based servers . i didnt understand can it be done ? does boost aio is the right tool for this ? is there any other tool for this ?
im using c++ as the programming .

typedef struct {
  unsigned long* Internal;
  unsigned long* InternalHigh;
  union {
    struct {
      WORD Offset;
      WORD OffsetHigh;
    };
    void* Pointer;
  };
  HANDLE hEvent;
} OVERLAPPED;

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

水波映月 2024-12-10 13:52:39

我还推荐自适应通信环境 http://www.cs.wustl。 edu/~schmidt/ACE-overview.html。但是,如果您已经在现有代码中使用了 Boost,那么 boost::asio 也是一个很棒的库。

I would also recommend the Adaptive Communication Environment http://www.cs.wustl.edu/~schmidt/ACE-overview.html. But if you already use Boost in your existing code, boost::asio is a wonderful library to work with too.

无法言说的痛 2024-12-10 13:52:39

是的,boost::asio 是正确的选择。

Yes, boost::asio is the right thing to go with.

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