是否可以在 Solr 索引中的多个文档中进行搜索,这些文档共享一个公共字段值并让 Solr 将其视为一个文档?
假设我将一本书的每一章作为单独的文档上传到 Solr,但它们共享一个公共字段,book
即书名。
<doc>
<field name="id">book1_chap01</field>
<field name="book">book1</field>
<field name="text">The proof is in the pudding.</field>
</doc>
<doc>
<field name="id">book1_chap02</field>
<field name="book">book1</field>
<field name="text">The concept is different than the reality.</field>
</doc>
如果您现在搜索proof AND concept
它不会返回任何内容,因为这些词出现在单独的文档中。
我希望proof AND concept
对所有共享共同账面价值“book1”的文档进行搜索,就好像它们是一个文档一样。
在 Solr 中这样的事情是可能的吗?