boost results by integer field
问题 I'm trying to create and autocomplete of destinations and i want to boost results by a popularity integer field. i'm trying with this function_score query 'query' => [ 'function_score' => [ 'query' => [ "bool" => [ "should" => [ [ "multi_match"=>[ "query"=>$text, "fields"=>[ "destination_name_*" ], "type"=>"most_fields", "boost" => 2 ] ], [ "multi_match"=>[ "query"=>$text, "fields"=>[ "destination_name_*" ], "fuzziness" => "1", "prefix_length"=> 2 ] ], [ "multi_match"=>[ "query"=>$text,