Hi all. I my case I have elastic search query look like this
$query = [
"index" => "my_index",
"type" => "q",
"body" => [
"query" => [
"dis_max" => [
"queries" => [
[
"match" => ["title" => "test"]
],
[
"match" => ["body" => "test"]
],
[
"match" => ["name" => "test"]
]
]
]
],
"min_score"=> 1
],
"size" => 1000,
];
I want to Increase priority of title result, as I want to multiply result of title by 2. Please help ! Thanks