動態映射(dynamic mappings)html
"name": { "type": "text", "fields": { "keyword": { "type": "keyword", "ignore_above": 256 } } }
全文索引的字段app
{ "foo": { "type": "string", "index": "analyzed" } } { "foo": { "type": "text", "index": true } }
不索引 關鍵詞搜索elasticsearch
{ "foo": { "type": "string", "index": "not_analyzed" } } { "foo": { "type": "keyword", "index": true } }