Is it possible to use an efficient paging with GSIterator? By "efficient paging" I mean the following scenario:
* The client requires rows N to M from a sorted result set.
* The server sends to the client just rows N to M; rows 1...N-1 are not send over network at all.
The class GSIterator provides batch size, but I can't find a possibility to ask the server just for rows N to M (or, in other words, to skip rows 1...N-1 without sending them over the wire). Am I missing something, or is such functionality not available?
↧