mirror of
https://github.com/fluencelabs/redis
synced 2025-04-04 16:51:12 +00:00
Don't increment dirty on expireIfNeeded() as natural expires are not considered database changes. This will avoid useless read-only commands in the AOF file as a result of, for instance, a GET operation triggering an expirIfNeeded() call resulting in an expired key removed.
This commit is contained in:
parent
b33ef40105
commit
670bf2fd36
1
src/db.c
1
src/db.c
@ -468,7 +468,6 @@ int expireIfNeeded(redisDb *db, robj *key) {
|
||||
|
||||
/* Delete the key */
|
||||
server.stat_expiredkeys++;
|
||||
server.dirty++;
|
||||
propagateExpire(db,key);
|
||||
return dbDelete(db,key);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user