diff options
author | antirez <antirez@gmail.com> | 2018-06-15 13:14:57 +0200 |
---|---|---|
committer | antirez <antirez@gmail.com> | 2019-06-18 12:31:10 +0200 |
commit | e9bb30fd859ed4e9e3e6434207dedbc251086858 (patch) | |
tree | 0ac8972fefe6911dee8c7376e14c611fcc105e1c /src/blocked.c | |
parent | fd0ee469ab165d0e005e9fe1fca1c4f5c604cd56 (diff) | |
download | redis-new-keyspace.tar.gz |
Experimental: new keyspace and expire algorithm.new-keyspace
This is an alpha quality implementation of a new keyspace representation
and a new expire algorithm for Redis.
This work is described here:
https://gist.github.com/antirez/b2eb293819666ee104c7fcad71986eb7
Diffstat (limited to 'src/blocked.c')
-rw-r--r-- | src/blocked.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/blocked.c b/src/blocked.c index 1db657869..c4162e1e7 100644 --- a/src/blocked.c +++ b/src/blocked.c @@ -270,7 +270,7 @@ void handleClientsBlockedOnKeys(void) { dictDelete(rl->db->ready_keys,rl->key); /* Serve clients blocked on list key. */ - robj *o = lookupKeyWrite(rl->db,rl->key); + robj *o = lookupKeyWrite(rl->db,rl->key,NULL); if (o != NULL && o->type == OBJ_LIST) { dictEntry *de; |