开发者

How do I fetch n-th row from Cassandra?

开发者 https://www.devze.com 2023-01-22 21:13 出处:网络
I have column family with timestamp as row name and I want to fetch first开发者_开发技巧 10 rows, second 10\'s, etc.

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)

0

精彩评论

暂无评论...
验证码 换一张
取 消