短语匹配查询(Match Phrase Query)
短语匹配查询
GET /_search
{
"query": {
"match_phrase" : {
"message" : "this is a test"
}
}
}GET /_search
{
"query": {
"match_phrase" : {
"message" : {
"query" : "this is a test",
"analyzer" : "my_analyzer"
}
}
}
}Last updated