From 8712e32e62871eb013a3bfbe88d295e3d3c89775 Mon Sep 17 00:00:00 2001 From: Ruben Bridgewater Date: Sun, 22 Nov 2015 22:49:22 +0100 Subject: [PATCH] Remove comment about reusing the same multi function. This is not supported anymore. Fixes #923 --- README.md | 6 ------ 1 file changed, 6 deletions(-) diff --git a/README.md b/README.md index 9187bd1cfe..cd728c8f02 100644 --- a/README.md +++ b/README.md @@ -469,12 +469,6 @@ client.mset("incr thing", 100, "incr other thing", 1, redis.print); multi.exec(function (err, replies) { console.log(replies); // 101, 2 }); - -// you can re-run the same transaction if you like -multi.exec(function (err, replies) { - console.log(replies); // 102, 3 - client.quit(); -}); ``` In addition to adding commands to the `MULTI` queue individually, you can also pass an array