如何在 FUSE 中发出多线程/非阻塞 readdir
目前,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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当你挂载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.