You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
How do we handle page size and limit in the collections API? The two are different
limit is the total number of values to be returned
page size is the amount of of values returned in a single request
The distinction is that the socket will timeout if the page size is too large
I think where we're landing is:
users in the adaptor will specify a limit (the total number of records to return). A cursor will be returned to the user if there are more records to fetch
the server will ONLY support pagesize (not an absolute limit). Ie, get me 1000 values from X
the adaptor will handle pagination to return the correct number of values
The text was updated successfully, but these errors were encountered:
How do we handle page size and limit in the collections API? The two are different
The distinction is that the socket will timeout if the page size is too large
I think where we're landing is:
The text was updated successfully, but these errors were encountered: