原文地址: https://www.elastic.co/guide/en/elasticsearch/reference/7.7/query-dsl-match-query-phrase.html, 原文档版权归 www.elastic.co 所有
IMPORTANT: No additional bug fixes or documentation updates
will be released for this version. For the latest information, see the
current release documentation.
Match phrase queryedit
The match_phrase query analyzes the text and creates a phrase query
out of the analyzed text. For example:
GET /_search
{
"query": {
"match_phrase" : {
"message" : "this is a test"
}
}
}
A phrase query matches terms up to a configurable slop
(which defaults to 0) in any order. Transposed terms have a slop of 2.
The analyzer can be set to control which analyzer will perform the
analysis process on the text. It defaults to the field explicit mapping
definition, or the default search analyzer, for example:
GET /_search
{
"query": {
"match_phrase" : {
"message" : {
"query" : "this is a test",
"analyzer" : "my_analyzer"
}
}
}
}
This query also accepts zero_terms_query, as explained in match query.