Hi,
I would like to ask for help about a behavior change between 5.6 and 6.0 ES version
With ES 5.6, when I use a TermsQuery (without constant_score) a score is computed
Since 6.0 the score is not computed (even without constant_score)
Since 6.0 ES termsquery is transformed to Lucene TermInSetQuery
Query sample:
GET /myindex/_search
{
"query" : {
"terms" : {
"MYFIELD" : {["val1","val2","val3"]
}
}
}
}
Is there a way to still use a TermsQuery with score computation ??? or have I to write my own TermsQueryBuilder??
Any suggestions.???.. In advance Thanks