I have an index in Xapian, and every doc have a value (dinstinct) that I want to use at sort.
The problem is that when I use:
$enquire->set_sort_by_value_then_relevance(1);
Xapian will sort only by value or if I use:
$enquire->set_sort_by_relevance();
Xapian will sort only by relevance.
I want to sort by 50% relevance + 50%value, mix this type of sorts, not one after another.
Can I make this with Xapian?
Thank you