Table of Contents |
---|
What is it?
The ability to provide queries with large response sizes and/or long running times in bucketed chunks, ie. Get all calls would be a good candidate for this
...
If you are doing processing using pagination be aware that the results are returned in chunks dynamically for the chunks present at the given time of the query, there is no concept of persistence of an original set of results.
So say you come in and ask for resultIndex=1&resultSize=1 and there are 10 entries
[Node 1], Node 2, Node 3, Node 4, Node 5, Node 6, Node 7, Node 8, Node 9, Node 10
Then you say resultIndex=2&resultSize=1 you get that Node 2
Node 1, [Node 2], Node 3, Node 4, Node 5, Node 6, Node 7, Node 8, Node 9, Node 10
Then say Node 1 gets deleted
Node 2, Node 3, Node 4, Node 5, Node 6, Node 7, Node 8, Node 9, Node 10
Then say you ask for resultIndex=3&resultSize=1 you would get Node 4 because now the entire set is different
Node 2, Node 3, [Node 4], Node 5, Node 6, Node 7, Node 8, Node 9, Node 10
...