Linux下AIO网络套接字和零拷贝

发布于 2024-09-04 00:07:51 字数 220 浏览 5 评论 0原文

我一直在尝试异步 Linux 网络套接字(aio_read 等人在 aio.h/librt 中),我一直试图找出的一件事是它们是否是零拷贝。到目前为止,我读到的几乎所有内容都讨论了文件 I/O,而我感兴趣的是它的网络 I/O。AIO

使用起来有点痛苦,而且我怀疑它是不可移植的,所以想知道它是否值得坚持使用它。零拷贝几乎是它相对于(非阻塞)select/epoll 的唯一优势(尽管对我来说这是一个主要优势)。

I have been experimenting with async Linux network sockets (aio_read et al in aio.h/librt), and one thing i have been trying to find out is whether these are zero-copy or not. Pretty much all i have read so far discusses file I/O, whereas its network I/O i am interested in.

AIO is a bit of a pain to use and i suspect is non-portable, so wondering whether its worth persevering with it. Zero-copy is just about the only advantage (albiet a major one for my purposes) it would have over (non-blocking) select/epoll..

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

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

发布评论

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

评论(1

她说她爱他 2024-09-11 00:07:52

在 GLIBC 中,AIO 是使用 POSIX 线程和常规 pread 调用来实现的。因此,它可能比 selectepoll 以及自己执行 readrecv 更昂贵。

In GLIBC, AIO is implemented using POSIX threads and a regular pread-call. So it's likely more expensive than select or epoll and doing the read or recv yourself.

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