Skip to content

Commit 8712e32

Browse files
author
Ruben Bridgewater
committed
Remove comment about reusing the same multi function. This is not supported anymore.
Fixes #923
1 parent 8f9ad00 commit 8712e32

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

README.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -469,12 +469,6 @@ client.mset("incr thing", 100, "incr other thing", 1, redis.print);
469469
multi.exec(function (err, replies) {
470470
console.log(replies); // 101, 2
471471
});
472-
473-
// you can re-run the same transaction if you like
474-
multi.exec(function (err, replies) {
475-
console.log(replies); // 102, 3
476-
client.quit();
477-
});
478472
```
479473

480474
In addition to adding commands to the `MULTI` queue individually, you can also pass an array

0 commit comments

Comments
 (0)