mirror of
https://github.com/elastic/elasticsearch.git
synced 2025-06-28 09:28:55 -04:00
In a few previous PR's we restructured the ES|QL docs to make it possible to generate them dynamically. This PR just moves a few files around to make the query languages docs easier to work with, and a little more organized like the ES|QL docs. A bit part of this was setting up redirects to the new locations, so other repo's could correctly link to the elasticsearch docs.
1.3 KiB
1.3 KiB
navigation_title | mapped_pages | |
---|---|---|
Constant score |
|
Constant score query [query-dsl-constant-score-query]
Wraps a filter query and returns every matching document with a relevance score equal to the boost
parameter value.
GET /_search
{
"query": {
"constant_score": {
"filter": {
"term": { "user.id": "kimchy" }
},
"boost": 1.2
}
}
}
Top-level parameters for constant_score
[constant-score-top-level-params]
filter
- (Required, query object) Filter query you wish to run. Any returned documents must match this query.
Filter queries do not calculate relevance scores. To speed up performance, {{es}} automatically caches frequently used filter queries.
boost
- (Optional, float) Floating point number used as the constant relevance score for every document matching the
filter
query. Defaults to1.0
.