2013-01-10

Replace Redis zRangeByScore with SSDB zscan

Views: 9419 | Add Comments

Introduction

zRangeByScore is one of the most powerfull command in Redis, it is used in zset pagination, like ‘list messages in by inbox’.

SSDB provides zscan, which is similar to zRangeByScore.

Redis:

zRangeByScore(name, score_start, score_end, options);

SSDB:

zscan(name, key_start, score_start, score_end, limit);

The key_start parameter makes it possible to distinguish items with same score.

Posted by ideawu at 2013-01-10 13:19:30

Leave a Comment