如何在 FUSE 中发出多线程/非阻塞 readdir

发布于 2024-10-30 17:27:54 字数 104 浏览 0 评论 0原文

目前,FUSE 中的 readdir() 是一种阻塞方法,这意味着在任何时候只能调用一个 readdir() 操作。我的文件系统可能需要支持大量同时目录操作。有什么建议吗?

谢谢

Right now, the readdir() in FUSE is a blocking method, which means that at anytime there is only one readdir() operation can be invoked. My file system may need support heavy simultaneously directory operations. Any suggestions?

Thanks

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

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

发布评论

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

评论(1

忆梦 2024-11-06 17:27:54

当你挂载fuse文件系统时,你必须启用多线程模式。现在默认启用。

在启用多线程之前,您必须双重确保您的 fusion fs 实现是线程安全的。

You have to enable the multi threading mode when you mount your fuse filesystem. It's enable by default now.

You have to be double sure that your fuse fs implementation is thread safe before enabling multi threading.

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