Samba:当前的Linux客户端支持异步读取吗?
为了提高性能,是否可以在 Linux 上从 CIFS 安装文件异步读取?
谢谢!!!
In the interest of increasing performance, is it possible to read asynchronously from a CIFS mounted file, on linux?
Thanks!!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Glibc 的 aio 实现创建线程来执行 I/O,因此它不依赖于文件系统类型来工作。 (另一方面,这也意味着您可以创建自己的线程,而不会错过太多。)
Glibc's aio implementation creates threads to do the I/O, so it does not depend on the filesystem type to work. (On the other hand, that also means you can create your own threads instead, without missing out on much.)