参考文章
- 在 Kibana的 Dev Tools中进行操作
命令一
POST _analyze
{
"analyzer": "ik_max_word",
"text": "我是中国人"
}
或查询 (and查询将should换成must)
POST /blog/_search
{
"query": {
"bool": {
"should": [
{
"match_phrase": {
"title": "springboot"
}
},
{
"match_phrase": {
"content": "springboot"
}
}
]
}
}
}
网友评论