You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
It's technically possible, and you've identified the right place for the changes, but it's not currently supported. I can't see any reason why it couldn't be, but it's not a use-case SoundCloud currently has, so I suspect the best path forward would be to create a PR, which I'd be happy to review.
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
The text was updated successfully, but these errors were encountered: