Elasticsearch 面接の質問と回答
質問 61. Explain the use of the 'Nested' datatype in Elasticsearch.
The 'Nested' datatype in Elasticsearch is used when dealing with arrays of objects. It allows you to query and index objects as separate entities, maintaining the relationships.
Example:
PUT /my_index
{
"mappings": {
"properties": {
"comments": {
"type": "nested"
}
}
}
}
役に立ちましたか?
コメントを追加
コメントを見る
ユーザー評価で最も役立つ内容: