mirror of
https://github.com/fluencelabs/redis
synced 2025-03-18 08:30:51 +00:00
volatile-lru maxmemory policy segfault fixed, thanks to Anthony Lauzon for reporting the problem with the patch. Original patch modified a bit in order to avoid the double lookup if the policy is allkeys-lru
This commit is contained in:
parent
11fd0c422b
commit
0c2f75c6d8
@ -1372,6 +1372,10 @@ void freeMemoryIfNeeded(void) {
|
||||
|
||||
de = dictGetRandomKey(dict);
|
||||
thiskey = dictGetEntryKey(de);
|
||||
/* When policy is volatile-lru we need an additonal lookup
|
||||
* to locate the real key, as dict is set to db->expires. */
|
||||
if (server.maxmemory_policy == REDIS_MAXMEMORY_VOLATILE_LRU)
|
||||
de = dictFind(db->dict, thiskey);
|
||||
o = dictGetEntryVal(de);
|
||||
thisval = estimateObjectIdleTime(o);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user