Badges
Accepted Solutions
Likes Received
Posts
Discussions
Ideas
Blog Posts
I've found that if the returnCount is less than the batchSize I can conclude that there are no more records to get despite the remainingCount being greater than zero. The remainingCount is notoriously unreliable with the excuse being it is an "estimate". I vaguely recall the errors in remainingCou...
I've found that if the returnCount is less than the batchSize I can conclude that there are no more records to get despite the remainingCount being greater than zero. The remainingCount is notoriously unreliable with the excuse being it is an "estimate".This is the hack I put in my code to avoid th...
Biao, if you read all the records until there are none, that should be a good count.Regarding inaccurate remainingCounts, can I assume if the returnCount is less than the batch size then that there is nothing more to return? Is there a better way to avoid being in an infinate loop of looking for mo...