Optimize search iterator slicing

When I slice a search iterator, the higher the starting number of the slice, the slower the search.

I would like for the slicing to be optimized to efficiently skip the unused rows (for example, using OFFSET in the underlying SQL query).

2 Likes