o: java-user@lucene.apache.org
> Subject: Re: Lucene' results paging
>
> Thanks for your answer. But how should I get the total nubmer of
> search results in this case?
>
> On Mon, Dec 21, 2009 at 6:51 PM, Ian Lea wrote:
> > Hi
> >
> >
> > The sta
Thanks for your answer. But how should I get the total nubmer of
search results in this case?
On Mon, Dec 21, 2009 at 6:51 PM, Ian Lea wrote:
> Hi
>
>
> The standard approach to paging is just to do the search again and
> pick out the docs you want, along the lines you outline. You cannot
> pass
Hi
The standard approach to paging is just to do the search again and
pick out the docs you want, along the lines you outline. You cannot
pass start/end info to any search methods.
When you set max doc to, say, 10, lucene will find the 10 highest
scoring docs and return them. There is no point
Hi, All! I have some problems with Lucene's search process and it's
results, so I hope You could help me.
First one: how should I split results by pages? Now I get search
results in such way:
TopDocs topDocs = is.search(finalQuery, 10) //For example
and after that I get the needed results in