increment dirty counter after hmset

This commit is contained in:
Pieter Noordhuis 2010-04-17 12:35:22 +02:00
parent 97224de7f9
commit edc2f63ad9

View File

@ -6294,6 +6294,7 @@ static void hmsetCommand(redisClient *c) {
hashSet(o,c->argv[i],c->argv[i+1]);
}
addReply(c, shared.ok);
server.dirty++;
}
static void hincrbyCommand(redisClient *c) {