120

type声明为string时,Elasticsearch 6.0 将显示此错误。

"name" => [
  "type" => "string",
  "analyzer" => "ik_max_word"
]
4

1 回答 1

247

Elasticsearch 已删除该string类型,现在使用text. 所以你的代码应该是这样的

"name" => [
  "type" => "text",
  "analyzer" => "ik_max_word"
]
于 2017-11-23T11:23:27.820 回答