如何索引&使用 solr + 搜索分层节点Drupal +查克
我的 Drupal 6 站点使用 3 种按层次结构组织的自定义节点类型:页面、书籍、库。我想使用 Solr 来索引和搜索内容。 我希望搜索在结果中仅返回 Book 节点。 但我希望搜索在执行搜索时使用子级(页面)和父级(库)的内容。 Solr 可以配置为索引和索引吗?用这种方式搜索?
谢谢!
My Drupal 6 site uses 3 custom node types that are hierarchically organized: page, book, library. I want to use Solr to index and search the content.
I want the search to return only Book nodes in the results.
But I want the search to use the contents of children (pages) and parents (libraries) when performing the search.
Can Solr be configured to index & search in this way?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您将遇到几个问题:
我建议您不要尝试实现这一点,但如果您这样做了,您可以查看 Apache Solr 附件 模块。您必须做类似的事情......基本上:
或者您可以创建一个包含一堆可搜索文本的巨大字段并将其用作您的搜索。
You are going to have a couple of issues with this:
I would recommend you don't try to implement this, but if you did you could look at the Apache Solr Attachments module. You would have to do something similar... basically:
Or you could create a single giant field with a bunch of searchable text and use that as part of your searches.