mirror of
https://github.com/fluencelabs/redis
synced 2025-06-14 09:41:21 +00:00
Now MULTI returns +OK as well
This commit is contained in:
1
redis.c
1
redis.c
@ -5365,6 +5365,7 @@ static void queueMultiCommand(redisClient *c, struct redisCommand *cmd) {
|
|||||||
|
|
||||||
static void multiCommand(redisClient *c) {
|
static void multiCommand(redisClient *c) {
|
||||||
c->flags |= REDIS_MULTI;
|
c->flags |= REDIS_MULTI;
|
||||||
|
addReply(c,shared.ok);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void execCommand(redisClient *c) {
|
static void execCommand(redisClient *c) {
|
||||||
|
Reference in New Issue
Block a user