tons of fixes to mongo and redis, to make returns the same

This commit is contained in:
Baris Soner Usakli
2013-12-05 18:26:26 -05:00
parent dcbe4ffd4a
commit 1564e3d530
4 changed files with 92 additions and 23 deletions

View File

@@ -318,7 +318,7 @@
module.sortedSetsScore = function(keys, value, callback) {
var multi = redisClient.multi();
for(x=0; x<keys.length; ++x) {
for(var x=0; x<keys.length; ++x) {
multi.zscore(keys[x], value);
}