Hibernate Search sorting
Asked Answered
G

1

8

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.

Guru answered 13/5, 2015 at 18:21 Comment(0)
G
11

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();
Grunt answered 13/5, 2015 at 21:24 Comment(6)
If I use a Sort object, do I keep scoring order of hibernate search ? In the example above, if I look for "hibernate search", a document with id = 3 which contains only the term "hibernate" would be sorted third after id = 2 and id = 1 ? Even if I invert Id order ?Guru
I said this because I tried ("id", SortField.LONG, true), it works fine but the order depends only on id and not on id and document scoreGuru
That's why the first SortField in the Sort ctor needs to be SortField.FIELD_SCORE. That tells it to sort by score first.Grunt
Thanks I didn't see it, I'll try itGuru
what if I want only 10 records, sorted by score, asc or desc based on input params ?Fairman
@DaxJoshi See the Hibernate Search docs on the first point, the SortField docs on the second (though I fail to see why on earth you would want to give the user the option to sort worst first). If you still have questions, you can ask by clicking the button at the top right.Grunt

© 2022 - 2024 — McMap. All rights reserved.