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
Right now, we always first make a query to get a page_size=2 which is intended just to give us a total count, so we can compute how many pages we will need.
Few possible optimizations:
Always get the first page anyway, and then if needed, fork the rest of the pages
If lastn is passed, and it is less than say, 2000, just make a single call with page_size=2000
Add server API to get count (to make db query to only get count, which is faster)
The text was updated successfully, but these errors were encountered:
Right now, we always first make a query to get a page_size=2 which is intended just to give us a total count, so we can compute how many pages we will need.
Few possible optimizations:
The text was updated successfully, but these errors were encountered: