mirror of
https://codeberg.org/redict/redict.git
synced 2025-01-23 00:28:26 -05:00
Added keyspace miss notifications support
This commit is contained in:
parent
3eaa2cdc44
commit
8620a434a0
7
src/db.c
7
src/db.c
@ -83,6 +83,7 @@ robj *lookupKey(redisDb *db, robj *key, int flags) {
|
|||||||
* 1. A key gets expired if it reached it's TTL.
|
* 1. A key gets expired if it reached it's TTL.
|
||||||
* 2. The key last access time is updated.
|
* 2. The key last access time is updated.
|
||||||
* 3. The global keys hits/misses stats are updated (reported in INFO).
|
* 3. The global keys hits/misses stats are updated (reported in INFO).
|
||||||
|
* 4. If keyspace notifications are enabled, a "miss" notification is fired.
|
||||||
*
|
*
|
||||||
* This API should not be used when we write to the key after obtaining
|
* This API should not be used when we write to the key after obtaining
|
||||||
* the object linked to the key, but only for read only operations.
|
* the object linked to the key, but only for read only operations.
|
||||||
@ -106,6 +107,7 @@ robj *lookupKeyReadWithFlags(redisDb *db, robj *key, int flags) {
|
|||||||
* to return NULL ASAP. */
|
* to return NULL ASAP. */
|
||||||
if (server.masterhost == NULL) {
|
if (server.masterhost == NULL) {
|
||||||
server.stat_keyspace_misses++;
|
server.stat_keyspace_misses++;
|
||||||
|
notifyKeyspaceEvent(NOTIFY_GENERIC, "miss", key, db->id);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -127,12 +129,15 @@ robj *lookupKeyReadWithFlags(redisDb *db, robj *key, int flags) {
|
|||||||
server.current_client->cmd->flags & CMD_READONLY)
|
server.current_client->cmd->flags & CMD_READONLY)
|
||||||
{
|
{
|
||||||
server.stat_keyspace_misses++;
|
server.stat_keyspace_misses++;
|
||||||
|
notifyKeyspaceEvent(NOTIFY_GENERIC, "miss", key, db->id);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
val = lookupKey(db,key,flags);
|
val = lookupKey(db,key,flags);
|
||||||
if (val == NULL)
|
if (val == NULL) {
|
||||||
server.stat_keyspace_misses++;
|
server.stat_keyspace_misses++;
|
||||||
|
notifyKeyspaceEvent(NOTIFY_GENERIC, "miss", key, db->id);
|
||||||
|
}
|
||||||
else
|
else
|
||||||
server.stat_keyspace_hits++;
|
server.stat_keyspace_hits++;
|
||||||
return val;
|
return val;
|
||||||
|
@ -188,6 +188,10 @@ int TestNotifications(RedisModuleCtx *ctx, RedisModuleString **argv, int argc) {
|
|||||||
RedisModule_Call(ctx, "LPUSH", "cc", "l", "y");
|
RedisModule_Call(ctx, "LPUSH", "cc", "l", "y");
|
||||||
RedisModule_Call(ctx, "LPUSH", "cc", "l", "y");
|
RedisModule_Call(ctx, "LPUSH", "cc", "l", "y");
|
||||||
|
|
||||||
|
/* Miss some keys intentionally so we will get a "miss" notification. */
|
||||||
|
RedisModule_Call(ctx, "GET", "c", "nosuchkey");
|
||||||
|
RedisModule_Call(ctx, "SMEMBERS", "c", "nosuchkey");
|
||||||
|
|
||||||
size_t sz;
|
size_t sz;
|
||||||
const char *rep;
|
const char *rep;
|
||||||
RedisModuleCallReply *r = RedisModule_Call(ctx, "HGET", "cc", "notifications", "foo");
|
RedisModuleCallReply *r = RedisModule_Call(ctx, "HGET", "cc", "notifications", "foo");
|
||||||
@ -225,6 +229,16 @@ int TestNotifications(RedisModuleCtx *ctx, RedisModuleString **argv, int argc) {
|
|||||||
FAIL("Wrong reply for l");
|
FAIL("Wrong reply for l");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
r = RedisModule_Call(ctx, "HGET", "cc", "notifications", "nosuchkey");
|
||||||
|
if (r == NULL || RedisModule_CallReplyType(r) != REDISMODULE_REPLY_STRING) {
|
||||||
|
FAIL("Wrong or no reply for nosuchkey");
|
||||||
|
} else {
|
||||||
|
rep = RedisModule_CallReplyStringPtr(r, &sz);
|
||||||
|
if (sz != 1 || *rep != '2') {
|
||||||
|
FAIL("Got reply '%.*s'. expected '2'", sz, rep);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
RedisModule_Call(ctx, "FLUSHDB", "");
|
RedisModule_Call(ctx, "FLUSHDB", "");
|
||||||
|
|
||||||
return RedisModule_ReplyWithSimpleString(ctx, "OK");
|
return RedisModule_ReplyWithSimpleString(ctx, "OK");
|
||||||
@ -435,7 +449,8 @@ int RedisModule_OnLoad(RedisModuleCtx *ctx, RedisModuleString **argv, int argc)
|
|||||||
RedisModule_SubscribeToKeyspaceEvents(ctx,
|
RedisModule_SubscribeToKeyspaceEvents(ctx,
|
||||||
REDISMODULE_NOTIFY_HASH |
|
REDISMODULE_NOTIFY_HASH |
|
||||||
REDISMODULE_NOTIFY_SET |
|
REDISMODULE_NOTIFY_SET |
|
||||||
REDISMODULE_NOTIFY_STRING,
|
REDISMODULE_NOTIFY_STRING |
|
||||||
|
REDISMODULE_NOTIFY_GENERIC,
|
||||||
NotifyCallback);
|
NotifyCallback);
|
||||||
if (RedisModule_CreateCommand(ctx,"test.notify",
|
if (RedisModule_CreateCommand(ctx,"test.notify",
|
||||||
TestNotifications,"write deny-oom",1,1,1) == REDISMODULE_ERR)
|
TestNotifications,"write deny-oom",1,1,1) == REDISMODULE_ERR)
|
||||||
|
Loading…
Reference in New Issue
Block a user