mirror of
https://github.com/fluencelabs/redis
synced 2025-06-24 22:41:32 +00:00
more AOF server struct fields renamed.
This commit is contained in:
2
src/db.c
2
src/db.c
@ -40,7 +40,7 @@ robj *lookupKey(redisDb *db, robj *key) {
|
||||
/* Update the access time for the aging algorithm.
|
||||
* Don't do it if we have a saving child, as this will trigger
|
||||
* a copy on write madness. */
|
||||
if (server.bgsavechildpid == -1 && server.bgrewritechildpid == -1)
|
||||
if (server.bgsavechildpid == -1 && server.aof_child_pid == -1)
|
||||
val->lru = server.lruclock;
|
||||
server.stat_keyspace_hits++;
|
||||
return val;
|
||||
|
Reference in New Issue
Block a user