es创建索引时如何指定ik分词器
时间: 2024-05-01 18:16:47 浏览: 156
ES集群添加IK分词器.md
在创建索引时,可以通过指定mapping来指定使用ik分词器。以下是一个示例:
```
PUT /my_index
{
"mappings": {
"properties": {
"title": {
"type": "text",
"analyzer": "ik_max_word"
},
"content": {
"type": "text",
"analyzer": "ik_max_word"
}
}
}
}
```
在上面的示例中,我们在mapping中为"title"和"content"字段指定了"ik_max_word"分词器。当我们对这些字段进行搜索时,查询字符串也会使用相同的分词器进行分词。
阅读全文