Search code examples
azure-cognitive-search

azure search sort and filter by score


I want to know how to filter and order the results by score with azure search.

I tried :

https://domaine.net/indexes/indexName/[email protected]%20desc&$count=true

Return :

object(stdClass)#322 (1) {
  ["error"]=>
  object(stdClass)#323 (2) {
    ["code"]=>
    string(0) ""
    ["message"]=>
    string(96) "Invalid expression: Syntax error at position 8 in '@search.score asc'.
Parameter name: $orderby"
  }
}

Solution

  • Results are sorted by score (descending) by default. If you sort by other criteria, score is used to break ties. If you want to sort by score explicitly, you can use the search.score() function in the $orderby parameter. It is documented here.

    It's not currently possible to filter by score. Since score varies as a function of not only the query but also the data corpus, I would be curious to understand your scenario better for filtering based on a score number.