X-Git-Url: https://git.saurik.com/redis.git/blobdiff_plain/eda827f8b71b81a1170f5524c52bea7db249eb58..e4f6b8c327eb8e1444b51ced96e59dc5e7294cf8:/src/redis.c diff --git a/src/redis.c b/src/redis.c index 5ddbb177..63b41ba8 100644 --- a/src/redis.c +++ b/src/redis.c @@ -1319,18 +1319,14 @@ sds genRedisInfoString(char *section) { "used_memory_peak:%zu\r\n" "used_memory_peak_human:%s\r\n" "mem_fragmentation_ratio:%.2f\r\n" - "use_tcmalloc:%d\r\n", + "mem_allocator:%s\r\n", zmalloc_used_memory(), hmem, zmalloc_get_rss(), server.stat_peak_memory, peak_hmem, zmalloc_get_fragmentation_ratio(), - #ifdef USE_TCMALLOC - 1 - #else - 0 - #endif + REDIS_MALLOC ); }