Hibernate search is sorting results depending on relevance, it is normal. In addition to that, if two documents are having the same score, they are ordered by their primary keys.
For example,
book1 : id=1, bookTitle = "hibernate search by example".
book2 : id=2, bookTitle = "hibernate search in action"
If I am doing a query to look for terms "hibernate search", I would have this order : book1 then book2
I would like to invert this order : book2 then book1. Which means inverting primary key order. Is there a possible way to do this without implementing a custom Similarity ? At the same time keeping relevance order.
Yes, you need to create a Sort
object which specifies the desired sorting, and set it in your query. See Section 5.1.3.3 of the Hibernate docs. Then, in the list of SortFields
pass SortField.FIELD_SCORE
. SortField's constructor also allows you to reverse the order.
org.hibernate.search.FullTextQuery query = s.createFullTextQuery( luceneQuery, MyEntity.class );
org.apache.lucene.search.Sort sort = new Sort(
SortField.FIELD_SCORE,
new SortField("id", SortField.STRING, true));
query.setSort(sort);
List results = query.list();
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With