Description:
To list out the entire collection items, the current STAC implementation has pagination via next. The API does offer limit query params to limit the number of items returned. This does allow us to query through all the items in the collection; however, we are always limited by the previous request's response to get the next (no parallelization to get all the items).
Proposal:
Instead of just having next with a limit for pagination, it would be great to have a limit with the offset. This would allow us to make parallel requests, hence highly optimizing the response time.
Description:
To list out the entire collection items, the current STAC implementation has pagination via next. The API does offer
limitquery params to limit the number of items returned. This does allow us to query through all the items in the collection; however, we are always limited by the previous request's response to get the next (no parallelization to get all the items).Proposal:
Instead of just having next with a limit for pagination, it would be great to have a
limitwith theoffset. This would allow us to make parallel requests, hence highly optimizing the response time.