es 创建索引用

#ik_max_word搜索用ik_smart
$ curl -X PUT 'localhost:9200/accounts' -d '

{
"mappings": {
"properties": {
"user": {
"type": "text",
"analyzer": "ik_max_word",
"search_analyzer": "ik_max_word"
},
"title": {
"type": "text",
"analyzer": "ik_max_word",
"search_analyzer": "ik_max_word"
},
"desc": {
"type": "text",
"analyzer": "ik_max_word",
"search_analyzer": "ik_max_word"
}
}
}
}

'
原文地址:https://www.cnblogs.com/chengfengchi/p/12844635.html