I tried this simple query:
{
"query":{
"range":{"ncopies":{gte:2, lte:5}}
}
}
and each document returned had a score of 1.
Then I tried:
{
"query":{
"term":{"ncopies":2}
}
}
and each document returned has a score of 1.52
Is there a difference in how score is calculated for "term" and "range"?