Suppose I have a query like this:
SELECT <somefields>
FROM example
ORDER BY somefield ASC
OPTION ranker=bm25
This seems contradictory. How is it going to sort? By somefield
only? Or by BM25 rank only? Or both? If both then which is the most important? Can I use both like somefield ASC, rank DESC
or rank DESC, somefield ASC
? How can I disable sorting altogether?