lists boost_terms
but don't show how we should use it..
I failed to google it as well..
I tried
"boost_terms" = {
"field1": 3
}
"boost_terms" = ["field1"]
"boost_terms" = [3]
"boost_terms" is boost value of the formed "terms/query" in the MLT (not field(s)), the domain is float and the default value is 1.0 (=disable). It change the weight vector of the terms in the query.
Usage example:
query:{"more_like_this":{"fields":[field1,field2],"like":"elastic kabana","boost_terms":3.0}}