mirror of
https://github.com/fluencelabs/redis
synced 2025-06-19 20:21:21 +00:00
Merge pull request #3188 from therealbill/unstable
maxmemory_policy fix for #3187
This commit is contained in:
@ -2937,7 +2937,7 @@ sds genRedisInfoString(char *section) {
|
||||
char maxmemory_hmem[64];
|
||||
size_t zmalloc_used = zmalloc_used_memory();
|
||||
size_t total_system_mem = server.system_memory_size;
|
||||
const char *evict_policy = maxmemoryToString();
|
||||
const char *evict_policy = evictPolicyToString();
|
||||
long long memory_lua = (long long)lua_gc(server.lua,LUA_GCCOUNT,0)*1024;
|
||||
|
||||
/* Peak memory is updated from time to time by serverCron() so it
|
||||
|
Reference in New Issue
Block a user