Thanks. Makes sense.
-Original Message-
From: Jake Mannix [mailto:jake.man...@gmail.com]
Sent: Wednesday, October 07, 2009 10:15 PM
To: java-user@lucene.apache.org
Subject: Re: 2.9: TopScoreDocCollector
Hi Eric,
Different Query classes have different options on whether they can
http://www.thetaphi.de
eMail: u...@thetaphi.de
> -Original Message-
> From: Jake Mannix [mailto:jake.man...@gmail.com]
> Sent: Thursday, October 08, 2009 7:15 AM
> To: java-user@lucene.apache.org
> Subject: Re: 2.9: TopScoreDocCollector
>
> Hi Eric,
>
> D
Hi Eric,
Different Query classes have different options on whether they can score
docs out of order, or if they always proceed in order, so the way to make
sure
you're choosing the right value, if you don't know which you need, is to ask
your Query (or more appropriately, it's Weight):
Query
According to the documentation for 2.9,
TopScoreDocCollector.create(numHits, boolean), the second parameter is
whether documents are scored in order by the input - How do I choose?
In other words, how would I know if the documents are scored in order or
not?
Eric