I got my lucene index with a field that needs to be sorted on.
I have my query and I can make my Sort object.
If I understand right from the javadoc I ...
I am testing Lucene.NET for our searching requirements, and I've got couple of questions.
We have documents in XML format. Every document contains multi-language text. The number of languages and the languages ...
Even after passing a sortfield, score of the document is effecting the sort order of the search results. Is there a way to make lucene to ignore the document score when ...
I want to sort my lucene(.net) search results by a date field (date1), but if date1 is not set, I'd like to use date2.
The traditional sort method is to sort by ...
I've got problem with sorting my lucene.net index in .NET. I tried almost every solution on stackoverflow and looking for google answers. I'm using Lucene.NET 2.9.2 and ASP.NET 2.0. I want ...
i have the code for getting sort result from lucene. now i need in descending order. can anyone show me the code for decending order for this search result
My index contains ~4 million recrords.
When I sort the results, the query runs much slower, which is not surprising.
My question is, is there some way to create the index so ...
I am doing a search operation by using lucene where i was taking my results by using topscorecollector, but i found that it unable to sort my topscorecollector results. I found ...
i am adding special enum to lucene for relevant the search. how i can sort the result who have a specific enum value.
suppose i add Poor moderate Best and i ...
Is it possible to sort Lucene results when using a custom collector, or would I have to implement that functionality myself, in the collector object? I can't find an overload ...