IK分词快速创建
删除已存在的索引,用postman发送delete请求
http://127.0.0.1:9200/索引名
1:创建索引
使用postman发送put请求
http://127.0.0.1:9200/索引名
2:添加中文分词映射,发送post,json格式
地址:
http://localhost:9200/index/_mapping
一些版本的es需要添加dosc
http://localhost:9200/index/docs/_mapping
json数据:
其中content就是你想要映射成中文分词的字段名.
analyzer和search_analyzer可选ik_smart (最粗粒度)和ik_max_word(最细粒度)
analyzer和search_analyzer必须保持一致,否则会出现查询不到的情况。
{
"properties": {
"content": {
"type": "text",
"analyzer": "ik_max_word",
"search_analyzer": "ik_max_word"
}
}
}
共有 0 条评论