提交 bf066c87 编写于 作者: R Raymond Myers

Fixed pfadd/pfcount commands emitting hll* events instead of pf* events

上级 f0868e08
...@@ -475,7 +475,7 @@ void pfaddCommand(redisClient *c) { ...@@ -475,7 +475,7 @@ void pfaddCommand(redisClient *c) {
} }
if (updated) { if (updated) {
signalModifiedKey(c->db,c->argv[1]); signalModifiedKey(c->db,c->argv[1]);
notifyKeyspaceEvent(REDIS_NOTIFY_STRING,"hlladd",c->argv[1],c->db->id); notifyKeyspaceEvent(REDIS_NOTIFY_STRING,"pfadd",c->argv[1],c->db->id);
server.dirty++; server.dirty++;
/* Invalidate the cached cardinality. */ /* Invalidate the cached cardinality. */
registers[REDIS_HLL_SIZE-1] |= (1<<7); registers[REDIS_HLL_SIZE-1] |= (1<<7);
...@@ -602,7 +602,7 @@ void pfmergeCommand(redisClient *c) { ...@@ -602,7 +602,7 @@ void pfmergeCommand(redisClient *c) {
signalModifiedKey(c->db,c->argv[1]); signalModifiedKey(c->db,c->argv[1]);
/* We generate an HLLADD event for HLLMERGE for semantical simplicity /* We generate an HLLADD event for HLLMERGE for semantical simplicity
* since in theory this is a mass-add of elements. */ * since in theory this is a mass-add of elements. */
notifyKeyspaceEvent(REDIS_NOTIFY_STRING,"hlladd",c->argv[1],c->db->id); notifyKeyspaceEvent(REDIS_NOTIFY_STRING,"pfadd",c->argv[1],c->db->id);
server.dirty++; server.dirty++;
addReply(c,shared.ok); addReply(c,shared.ok);
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册