I agree, it's definitely not what one wants. But to answer your question: Yes,
I do use RemoteSearchable on the server side.
-Original Message-
From: Yonik Seeley [mailto:[EMAIL PROTECTED]
Sent: Thu 2006-01-19 18:44
To: java-user@lucene.apache.org
Subject: Re: Limiting hits?
ava-user@lucene.apache.org
> Subject: Re: Limiting hits?
>
> Hits doesn't keep track of all 100,000 matches, only the first 100.
> It dynamically collects more matches if it needs to.
>
> -Yonik
>
> On 1/19/06, Daniel Pfeifer <[EMAIL PROTECTED]> wrote:
> > H
Are you certain? I am quite sure we retrieve a huge amount of data if there are
thousands of matches to one query.
-Original Message-
From: Yonik Seeley [mailto:[EMAIL PROTECTED]
Sent: Thu 2006-01-19 16:45
To: java-user@lucene.apache.org
Subject: Re: Limiting hits?
Hits doesn't
Hits doesn't keep track of all 100,000 matches, only the first 100.
It dynamically collects more matches if it needs to.
-Yonik
On 1/19/06, Daniel Pfeifer <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I am currently looking for a way to limit the amount of Hits which are
> returned by a Query.
>
> What I
Hi,
I am currently looking for a way to limit the amount of Hits which are
returned by a Query.
What I am doing is following:
Searcher s = ...;
Query q = QueryParser.parse("...", "...", new StandardAnalyzer());
searcher.search(query);
We have approximately 10 million products in our Index and o