Is it possible to use the cursor-based pagination to fetch the previous page (ie. to get all the new items with higher score than items coming from the first request)?
I guess to "go back", we'd have to use reversed order of the Redis data (ZRANGEBYSCORE, max=+inf, min=StartScoreStr) at
Would it make sense? Does Roshi already support this feature (and I'm just blind)?
Any feedback appreciated.
Related to #36, CC: @peterbourgon @pkieltyka
Is it possible to use the cursor-based pagination to fetch the previous page (ie. to get all the new items with higher score than items coming from the first request)?
I guess to "go back", we'd have to use reversed order of the Redis data (
ZRANGEBYSCORE,max=+inf,min=StartScoreStr) atroshi/cluster/cluster.go
Line 557 in 4c3eb77
Would it make sense? Does Roshi already support this feature (and I'm just blind)?
Any feedback appreciated.
Related to #36, CC: @peterbourgon @pkieltyka