1

solr 是否支持嵌套文档?有没有更好的方法来实现这种文档?

<doc>
    <field name="name">Mr. Test</field>
    <field name="case">
        <field name="link">http://foo.com</field>
        <field name="date">1-2-1234</filed>
        <field name="title">My title</filed>
    </field>
    <field name="case">
        <field name="link">http://foo.com/2/</field>
        <field name="date">1-2-1234</filed>
        <field name="title">My title 2</filed>
    </field>
</doc>

我所拥有的是一个参与过多个案件的人。这种形式的模式对于 solr 是否合法?不同的人也可以是同一案件的一部分。所以它看起来确实像一个关系数据库的任务,但我在这个项目中使用了 solr。

4

2 回答 2

4

较新版本的 Solr 提供对嵌套文档的支持

索引这个 Json

[
  {
    "id": "1",
    "title": "Solr adds block join support",
    "content_type": "parentDocument",
    "_childDocuments_": [
      {
        "id": "2",
        "comments": "SolrCloud supports it too!"
      }
    ]
  },
  {
    "id": "3",
    "title": "Lucene and Solr 4.5 is out",
    "content_type": "parentDocument",
    "_childDocuments_": [
      {
        "id": "4",
        "comments": "Lots of new features"
      }
    ]
  }
]

在 schema.xml 中,您必须添加此处使用的所有字段,即“title”、“content_type”、“comments”。参数“ childDocuments ”是 solr 处理的参数,它通过它理解这是一个子文档,“content_type”:“parentDocument”是 solr 的标识符,用于理解这是父文档。如果我们查询,在索引这个 Json 之后

"*":"*"

我们应该总共看到 4 个文件。现在我们可以在Block 和 join 查询解析器的帮助下获取父文档或子文档。试试这个查询

http://localhost:8983/solr/collection_test/select?q={!child%20of=%22content_type:parentDocument%22}title:lucene

和这个

http://localhost:8983/solr/collection_test/select?q={!parent%20which=%22content_type:parentDocument%22}comments:SolrCloud
于 2015-05-12T11:44:17.760 回答
3

不,Solr 不支持这种嵌套结构。也看看这个其他问题

于 2012-08-29T14:56:39.257 回答