Hello, With Lucene, instead of returning results by date, I return results in the reverse index order (last doc added is returned first)
For example : hits = searcher.search(luceneQuery,new Sort(new SortField(null, SortField.DOC, true)) How can I do that with Solr ? Thanks. JBC