Am Donnerstag, den 04.01.2007, 14:38 -0600 schrieb Dennis Kubes:
> Hits should be sorted according to score. Getting the first document
> should give you the one with the highest score.
>
> Dennis
Hi
thanks for your comment,
I found the mistake.
Now the Hits are sorted.
Nils
>
> Nils Höl
Maybe your MySearcher is doing something different than the "Hits
IndexSearcher.search()" method?
On Jan 4, 2007, at 3:38 PM, Dennis Kubes wrote:
Hits should be sorted according to score. Getting the first
document should give you the one with the highest score.
Dennis
Nils Höller wrote
Hits should be sorted according to score. Getting the first document
should give you the one with the highest score.
Dennis
Nils Höller wrote:
Hi,
this is a short beginner question:
I am searching for something in my program
Hits hits = MySearcher.search(queryStr, searchRes.indexPath);
N
Hi,
this is a short beginner question:
I am searching for something in my program
Hits hits = MySearcher.search(queryStr, searchRes.indexPath);
Now I only want the Document with the highest score.
Is there a better way, then iterating through all hits?
The Hits objects seems to be not sorted.