2016-04-05 08:16:43 -04:00
|
|
|
[[query-dsl-match-query-phrase]]
|
|
|
|
=== Match Phrase Query
|
|
|
|
|
|
|
|
The `match_phrase` query analyzes the text and creates a `phrase` query
|
|
|
|
out of the analyzed text. For example:
|
|
|
|
|
|
|
|
[source,js]
|
|
|
|
--------------------------------------------------
|
2016-05-24 05:58:43 -04:00
|
|
|
GET /_search
|
2016-04-05 08:16:43 -04:00
|
|
|
{
|
2016-05-24 05:58:43 -04:00
|
|
|
"query": {
|
|
|
|
"match_phrase" : {
|
|
|
|
"message" : "this is a test"
|
|
|
|
}
|
2016-04-05 08:16:43 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
--------------------------------------------------
|
2016-05-24 05:58:43 -04:00
|
|
|
// CONSOLE
|
2016-04-05 08:16:43 -04:00
|
|
|
|
|
|
|
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:
|
|
|
|
|
|
|
|
[source,js]
|
|
|
|
--------------------------------------------------
|
2016-05-24 05:58:43 -04:00
|
|
|
GET /_search
|
2016-04-05 08:16:43 -04:00
|
|
|
{
|
2016-05-24 05:58:43 -04:00
|
|
|
"query": {
|
|
|
|
"match_phrase" : {
|
|
|
|
"message" : {
|
|
|
|
"query" : "this is a test",
|
|
|
|
"analyzer" : "my_analyzer"
|
|
|
|
}
|
2016-04-05 08:16:43 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
--------------------------------------------------
|
2016-05-24 05:58:43 -04:00
|
|
|
// CONSOLE
|