getSortedSetRevRangeByLex

v1.18.x
yariplus 8 years ago
parent 7ba76fc0b6
commit 1fc5e5d0d3

@ -299,9 +299,25 @@ module.exports = function (redisClient, module) {
if (max !== '+') {
max = '(' + max;
}
redisClient.zrangebylex([key, min, max, 'LIMIT', start, count], callback);
sortedSetRangeByLex('zrangebylex', key, min, max, start, count, callback)
};
module.getSortedSetRevRangeByLex = function (key, max, min, start, count, callback) {
if (min !== '-') {
min = '[' + min;
}
if (max !== '+') {
max = '(' + max;
}
sortedSetRangeByLex('zrevrangebylex', key, max, min, start, count, callback)
};
function sortedSetRangeByLex(method, key, min, max, start, count, callback) {
redisClient[method]([key, min, max, 'LIMIT', start, count], callback);
}
module.sortedSetIntersectCard = function (keys, callback) {
if (!Array.isArray(keys) || !keys.length) {
return callback(null, 0);

Loading…
Cancel
Save