mirror of
https://github.com/fluencelabs/redis
synced 2025-06-22 13:31:32 +00:00
support for write operations against expiring keys, by master-controlled expiring in replication and AOF synthesizing DEL operations
This commit is contained in:
@ -752,8 +752,8 @@ void resetServerSaveParams();
|
||||
|
||||
/* db.c -- Keyspace access API */
|
||||
int removeExpire(redisDb *db, robj *key);
|
||||
void propagateExpire(redisDb *db, robj *key);
|
||||
int expireIfNeeded(redisDb *db, robj *key);
|
||||
int deleteIfVolatile(redisDb *db, robj *key);
|
||||
time_t getExpire(redisDb *db, robj *key);
|
||||
int setExpire(redisDb *db, robj *key, time_t when);
|
||||
robj *lookupKey(redisDb *db, robj *key);
|
||||
|
Reference in New Issue
Block a user