Skip to content
Advertisement

How to sort a Lucene long date range by date

Problem: I want to search books by date range, but sort the result. Searching by date range works, but the documents are not sorted properly (Insertion order, see ID?):

JavaScript

To sort them by date, I changed my code to:

Add NumericDocValuesField:

JavaScript

Add a Sort:

JavaScript

Question: What am I doing wrong? What do I need to change so the documents get sorted descending (2021 first, 20202 second, 2000 third…). Taking a look at the following question did not help: Sorting lucene documents by date

My code:

JavaScript

Advertisement

Answer

My problem was related to the Long conversion via Lucene DateTools. I changed my code and now get proper sorting:

JavaScript

Output:

JavaScript
User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement