Can someone point me to a detailed documentation how paging is implemented, with page and page state? I have gone through https://datastax.github.io/java-driver/manual/paging/
But how is it implemented internally?
Is the coordinator drawing data and does a limit offset query as the data is drawn out from replicas sequentially for every page request?
Or are the saving the file cursor and doing a RandomAccess? If so can I get that back from the driver and use it later on?