Мы хотели бы найти альтернативу Elasticsearch: Minim_should_match в Azure Поиск
Пример запроса Elasticsearch:
"bool" : {
"must" : [
{
"bool" : {
"should" : [{...}],
"adjust_pure_negative" : true,
"minimum_should_match" : "45",
"boost" : 1.0
}
},
{
"bool" : {
"should" : [{...}],
"adjust_pure_negative" : true,
"minimum_should_match" : "38",
"boost" : 1.0
}
},
{
"bool" : {
"should" : [{...}],
"adjust_pure_negative" : true,
"minimum_should_match" : "29",
"boost" : 1.0
}
}
],
"adjust_pure_negative" : true,
"boost" : 1.0
}
Мы успешно преобразовали запрос ES в Azure Поиск один, за исключением параметра Minimum_should_match. Есть предложения?