Hi all, I have a very strange problem. The size of the IPagingResult of a SearchQuery is not the same of the results returned by the subList method.
Explanation:
IPagingList result = searchQuery.execute();int results = result.size();List subList = result.subList(results-20, results);
In some cases the subList is empty, how could this be possible?? What could be the problem??
Thanks to everybody contributing!