1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-06 02:15:48 +03:00

Fix saving buffers with charsets other than utf-8 while using multi

This will also improve pipelinening for buffers and fixes the return value of Batch.exec

Fixes #913
This commit is contained in:
Ruben Bridgewater
2015-11-18 01:45:03 +01:00
parent 19ce6680ef
commit 241e156499
5 changed files with 105 additions and 30 deletions

View File

@@ -156,7 +156,9 @@ module.exports = {
i++;
if (i === max) {
func();
return true;
}
return false;
};
},
killConnection: function (client) {