ES之映射关系
映射管理
GET http://127.0.0.1:9200/user/_mapping
{
"properties":{
"name":{
"type":"text",
"index":true
},
"sex":{
"type":"keyword",
"index":true
},
"tel":{
"type":"keyword",
"index":true
}
}
}
text:表示可以进行分词
keyword:表示只能完整匹配
这是一种映射关系,可以通过这个映射关系,设置该属性是否需要被分词。
本文来自博客园,作者:King-DA,转载请注明原文链接:https://www.cnblogs.com/qingmuchuanqi48/articles/16820086.html

浙公网安备 33010602011771号