My Stuff
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Comments
-
Hi everyone, I have made some code changes and have more information. The logic we use to determine whether to stop getting more results from a search is as follows: while( result.getPageIndex() != null && result.getTotalPages() != null && result.getPageIndex().intValue() < result.getTotalPages().intValue() ) But it…