added sortedSetIncrBy

This commit is contained in:
barisusakli
2014-09-27 15:48:16 -04:00
parent 99d98a7016
commit 9d25772b53
3 changed files with 22 additions and 0 deletions

View File

@@ -211,4 +211,8 @@ module.exports = function(redisClient, module) {
callback(err, results ? results[1] : null);
});
}
module.sortedSetIncrBy = function(key, increment, value, callback) {
redisClient.zincrby(key, increment, value, callback);
};
};