RE: Limiting hits?

2006-01-19 Thread Daniel Pfeifer
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?

Re: Limiting hits?

2006-01-19 Thread Yonik Seeley
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

RE: Limiting hits?

2006-01-19 Thread Daniel Pfeifer
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

Re: Limiting hits?

2006-01-19 Thread Yonik Seeley
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

Limiting hits?

2006-01-19 Thread Daniel Pfeifer
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