2015-05-05 02:27:52 -04:00
|
|
|
[[query-dsl-constant-score-query]]
|
2015-06-03 19:59:22 -04:00
|
|
|
=== Constant Score Query
|
2015-05-05 02:27:52 -04:00
|
|
|
|
|
|
|
A query that wraps another query and simply returns a
|
|
|
|
constant score equal to the query boost for every document in the
|
|
|
|
filter. Maps to Lucene `ConstantScoreQuery`.
|
|
|
|
|
|
|
|
[source,js]
|
|
|
|
--------------------------------------------------
|
2016-05-24 05:58:43 -04:00
|
|
|
GET /_search
|
2015-05-05 02:27:52 -04:00
|
|
|
{
|
2016-05-24 05:58:43 -04:00
|
|
|
"query": {
|
|
|
|
"constant_score" : {
|
|
|
|
"filter" : {
|
|
|
|
"term" : { "user" : "kimchy"}
|
|
|
|
},
|
|
|
|
"boost" : 1.2
|
|
|
|
}
|
2015-05-05 02:27:52 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
--------------------------------------------------
|
2016-05-24 05:58:43 -04:00
|
|
|
// CONSOLE
|