XMLで単一のネストされた子をインデックス化

トピック作成者:ks-solruserml-bot (2024/06/22 19:37 投稿)
1
CloseClose

(The bot translated the original post https://lists.apache.org/thread/6qw3k7mjb09r86f3tkqjw3wzlzw7s62q into Japanese and reposted it under Apache License 2.0. The copyright of posted content is held by the original poster.)

こんにちは、

JSONリクエストでは、ネストされた子ドキュメントを単一のドキュメントまたは複数のドキュメントの配列として追加できます。

JSONデータ:

{
  "id": "1",
  "single_child": {
    "id": "2"
  },
  "children": [
    {
      "id": "3"
    },
    {
      "id": "4"
    }
  ]
}

レスポンス:

{
  "responseHeader": {
    "status": 0,
    "QTime": 1,
    "params": {
      "q": "id:1",
      "fl": "id,single_child,children,[child]"
    }
  },
  "response": {
    "numFound": 1,
    "start": 0,
    "numFoundExact": true,
    "docs": [
      {
        "id": "1",
        "single_child": {
          "id": "2"
        },
        "children": [
          {
            "id": "3"
          },
          {
            "id": "4"
          }
        ]
      }
    ]
  }
}

XMLリクエストで同じことを実現しようとしています。ラベル付きネストされたドキュメントとしてその単一の子を追加するための正しい構文は何ですか?

よろしくお願いします。
Thomas

返信投稿者:ks-solruserml-bot (2024/06/22 19:37 投稿)

こんにちは Thomas.

ここに書かれているでしょうか:
https://solr.apache.org/guide/8_4/indexing-nested-documents.html#xml-examples

トピックへ返信するには、ログインが必要です。

KandaSearch

Copyright © 2006-2024 RONDHUIT Co, Ltd. All Rights Reserved.

投稿の削除

この投稿を削除します。よろしいですか?