How do I fetch n-th row from Cassandra?
I have column family with timestamp as row name and I want to fetch first开发者_开发技巧 10 rows, second 10's, etc.
family = { //CF
TimeUUID: value,
...
I know that I can set column-limit for first query and get first n-th rows, but how can I get next n-th rows?
get_range_slices (use the last key from the previous query as the first key in the next query)
精彩评论