制图
可以使用 analyzer
将分析器应用于映射,默认情况下使用标准分析器。或者,如果你不希望使用任何分析器(因为标记化或标准化没有用),你可以指定 index
:“not_analyzed”
PUT my_index
{
"mappings": {
"user": {
"properties": {
"name": {
"type": "string"
"analyzer": "my_user_name_analyzer"
},
"id": {
"type": "string",
"index": "not_analyzed"
}
}
}
}
}