IOCP,跨平台库?

发布于 2024-07-10 21:43:17 字数 308 浏览 6 评论 0原文

我最近在 Windows 平台上遇到了一个叫做 IOCP 的东西,更准确地说:输入/输出控制端口。 当需要同时容纳数千个用户时,这似乎是对服务器软件进行编码的最有效方法。 (如果我错了,请纠正我,但是每个套接字线程、轮询和异步回调(每个回调上的线程)都不够高效。)

我想知道是否有任何第三方库可以实现这个概念。 我知道win32 api为我们提供了CreateIoCompletionPort,FreeBSD有kqueue,linux一般可以使用/dev/epoll,其工作原理有点类似......但是没有一个跨平台库(例如boost::thread)来处理这些东西为我?

I've recently bumped into something called IOCP on the windows platform, to be more precise: Input/Output Control Ports. This seems to be the most efficient way to code your server software when it needs to hold thousands of users concurrently.
(Correct me if I'm wrong, but thread-per-socket, polling, and asynchronous callbacks (thread on every callback) are not efficient enough.)

I am wondering if there are any 3rd party libraries available that implement this concept. I know the win32 api supplies us with CreateIoCompletionPort, FreeBSD has kqueue and linux in general can use /dev/epoll that works somewhat similarly... But isn't there a crossplatform library (such as boost::thread) that handles this stuff for me?

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

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

发布评论

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

评论(3

月亮是我掰弯的 2024-07-17 21:43:17

你看过 boost::asio 吗?
我不确定它是否具有所有这些功能,但我相信这是它的目的之一。

Have you looked at boost::asio?
I'm not sure if it has all this functionality yet, but I believe that's one of the things it's intended for.

幸福不弃 2024-07-17 21:43:17

我知道这是对此线程的较晚回复,但对于那些对在 Linux/UNIX 和 Windows 上支持异步 IO 的 x 平台库感兴趣的人,您可能需要查看 libuv

libuv 最初是作为 Node.js 的基础构建的,但它已经发展成为一个强大的抽象库对于许多低级别的 x 平台问题,包括异步 IO、非阻塞 TCP 套接字和 命名管道、UDP、计时器、子进程生成
、高分辨率时间、线程池调度等。

I know this is a late reply to this thread, but for those interested in a x-platform library supporting async IO on both Linux/UNIX and Windows, you might want to take a look at libuv.

libuv was initially constructed as the foundational underpinnings of node.js, but it has evolved to become a powerful abstraction library for many low-level, x-platform concerns including async IO, non-blocking TCP sockets & named pipes, UDP, timers, child process spawning
, high resolution time, thread pool scheduling, etc.

笑,眼淚并存 2024-07-17 21:43:17

libevent 适用于许多 *nix 操作系统,也可以在 Windows 上运行。

libevent works on a number of *nix OSes and also runs on Windows.

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