added getSortedSetRangeByScore

This commit is contained in:
barisusakli
2014-03-18 13:25:05 -04:00
parent 2badb76fc2
commit e11efad0b7
2 changed files with 14 additions and 3 deletions

View File

@@ -359,6 +359,10 @@
redisClient.zrevrange(key, start, stop, callback);
};
module.getSortedSetRangeByScore = function(args, callback) {
redisClient.zrangebyscore(args, callback);
};
module.getSortedSetRevRangeByScore = function(args, callback) {
redisClient.zrevrangebyscore(args, callback);
};