1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-09 00:22:08 +03:00
This commit is contained in:
Matt Ranney
2010-09-24 14:16:22 -07:00
parent 17b5082e79
commit fc5b7e00f8

View File

@@ -26,7 +26,7 @@ client.multi()
client.mset("incr thing", 100, "incr other thing", 1, redis.print);
// start a separate command queue for multie
// start a separate multi command queue
var multi = client.multi();
multi.incr("incr thing", redis.print);
multi.incr("incr other thing", redis.print);