如何使用 solr 索引 cifs 服务器
是否可以使用 solr 在 cifs 服务器上索引某些文档?
谢谢
is it possible to index some document on cifs server with solr ?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
是否可以使用 solr 在 cifs 服务器上索引某些文档?
谢谢
is it possible to index some document on cifs server with solr ?
Thanks
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
CIFS 是一种网络协议。 Solr 不会“谈论”CIFS。但如果您的服务器能够建立 CIFS 卷,您就可以索引这些文档。
如果 CIFS 共享由 Windows 或 Linux 服务器共享,则也可以在文件服务器上运行 Solr,因为 Solr/Lucene 是用 Java 编写的,并且也可以在 Windows 和 Linux 上运行。
要导入文档,请使用数据导入处理程序 (DIH),如 Mauricio Scheffer 所写。
DIH 能够递归地抓取目录,以便为他找到的数据建立索引。
CIFS is an network protocol. Solr does not "talk" CIFS. But if your Server is able to mound the CIFS Volume, you can index those documents.
If the CIFS share is shared by an windows or linux Server, it's also possible to run Solr on the fileserver, because Solr/Lucene is written in Java and will work on windows an linux as well.
For importing the document use the data import handler (DIH), as Mauricio Scheffer wrote.
The DIH is able to crawl an directory recursive in order to index the data he find.