将虚拟文件系统与 Lucene.NET 结合使用
有没有办法在 Lucene.NET 中使用虚拟文件系统?根据我使用 Lucene 的(中等)经验,我怀疑这里的答案是否定的;但以防万一(...)除非:
或者是否有现有的 Contrib 模块或 Lucene.NET 插件添加了 VFS 支持?
Is there a way to use a virtual filesystem with Lucene.NET? Based on my (moderate) experience with Lucene, I suspect the answer here is no; but just in case (...) barring that:
Or is there an existing Contrib module or add-on for Lucene.NET that adds VFS support?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过实现
Lucene.Net.Store.Directory
来做到这一点。这个抽象类的 xmldoc 非常有指导意义:以下是实现自定义目录以支持 Azure 的示例。
You can do this by implementing
Lucene.Net.Store.Directory
. The xmldoc for this abstract class is very didactic:Here's an example of implementing a custom Directory to support Azure.