Re: Exception when attempting to query using ToParentBlockJoinQuery in Lucene 5.1

2015-06-22 Thread Bauer, Herbert S. (Scott)
Well it’s clear that this is just giving a return value of Integer.MAX_VALUE for the parentDoc. Given the recent changes noted here: https://issues.apache.org/jira/browse/LUCENE-6021 where FixedBitSet now returns Integer.MAX_VALUE instead of -1 I wonder if a bug wasn’t introduced to the BlockJoin

Re: does Lucene 5 provide a direct way to do paging on search result

2015-06-22 Thread Steve Rowe
Hi solmaz, IndexSearcher.searchAfter() (several variants) can be used to do (deep) paging - here’s one of them: Steve >

does Lucene 5 provide a direct way to do paging on search result

2015-06-22 Thread solmaz oskouii
Hi does Lucene provide a direct way to do paging on search result without any more coding just using Lucene 's API? links below show how to make paging on search results after do search(use indexSearch API) http://hrycan.com/2010/02/10/paginating-lucene-search-results/ http://stackoverflow.co