Commit b167f877 authored by antirez's avatar antirez
Browse files

RENAME is now WATCH-aware

parent cef34df0
...@@ -4683,6 +4683,7 @@ static void renameGenericCommand(redisClient *c, int nx) { ...@@ -4683,6 +4683,7 @@ static void renameGenericCommand(redisClient *c, int nx) {
incrRefCount(c->argv[2]); incrRefCount(c->argv[2]);
} }
deleteKey(c->db,c->argv[1]); deleteKey(c->db,c->argv[1]);
touchWatchedKey(c->db,c->argv[2]);
server.dirty++; server.dirty++;
addReply(c,nx ? shared.cone : shared.ok); addReply(c,nx ? shared.cone : shared.ok);
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment