嵌套-映射

嵌套对象映射

设定一个nested栏位很简单--在你会设定为object类型的地方,改为nested类型:

PUT /my_index
{
  "mappings": {
    "blogpost": {
      "properties": {
        "comments": {
          "type": "nested", <1>
          "properties": {
            "name":    { "type": "string"  },
            "comment": { "type": "string"  },
            "age":     { "type": "short"   },
            "stars":   { "type": "short"   },
            "date":    { "type": "date"    }
          }
        }
      }
    }
  }
}

<1> 一个nested栏位接受与object类型相同的参数。

所需仅此而已。 任何comments对象会被索引为分离嵌套对象。 参考更多 nested type reference docs

powered by Gitbook该页面构建时间: 2017-08-11 12:51:16

results matching ""

    No results matching ""