ElasticSearch

ElasticSearch,第1张

ElasticSearch

Elasticsearch将扁平化嵌套对象,因此在内部您将获得:

{  "title":"The Judge","year":2014,"casting.name": ["Robert Downey Jr.","Robert Duvall"],"casting.category": ["Producer", "Actor"]}

如果要保留关系,则需要使用嵌套对象或父子关系

要进行嵌套映射,您需要执行以下 *** 作:

  "mappings": {    "movies": {      "properties": {        "title" : { "type": "string" },        "year" : { "type": "integer" },        "casting": {          "type": "nested","properties": { "name":    { "type": "string" }, "category": { "type": "string" }          }        }      }    }  }


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/4916264.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-12
下一篇 2022-11-12

发表评论

登录后才能评论

评论列表(0条)

保存