如何使用solr索引json

时间:2015-04-23 14:36:54

标签: solr4

我想知道我们可以将json索引到solr中吗?如果是,我们可以根据json的键或值来搜索文档。

例如:

我们可以索引

[
  {
    "id": "chapter1",
    "title" : "Indexing Child Documents in JSON",
    "content_type": "chapter",
    "_childDocuments_": [
      {
        "id": "1-1",
        "content_type": "page",
        "text": "ho hum... this is page 1 of chapter 1"
      },
      {
        "id": "1-2",
        "content_type": "page",
        "text": "more text... this is page 2 of chapter 1"
      }
    ]
  }
]

1 个答案:

答案 0 :(得分:0)

我已将自定义Jsons编入索引,并且您的问题的答案为“是”,我们可以使用管理界面或CLI将Json索引到Solr。 我们可以在solr中执行搜索查询,并在“值”上执行搜索。