mirror of
https://github.com/fluencelabs/redis
synced 2025-06-17 03:01:20 +00:00
reports if tcmalloc is in used in INFO output
This commit is contained in:
@ -1185,6 +1185,7 @@ sds genRedisInfoString(void) {
|
||||
"used_memory:%zu\r\n"
|
||||
"used_memory_human:%s\r\n"
|
||||
"mem_fragmentation_ratio:%.2f\r\n"
|
||||
"use_tcmalloc:%d\r\n"
|
||||
"changes_since_last_save:%lld\r\n"
|
||||
"bgsave_in_progress:%d\r\n"
|
||||
"last_save_time:%ld\r\n"
|
||||
@ -1219,6 +1220,11 @@ sds genRedisInfoString(void) {
|
||||
zmalloc_used_memory(),
|
||||
hmem,
|
||||
zmalloc_get_fragmentation_ratio(),
|
||||
#ifdef USE_TCMALLOC
|
||||
1,
|
||||
#else
|
||||
0,
|
||||
#endif
|
||||
server.dirty,
|
||||
server.bgsavechildpid != -1,
|
||||
server.lastsave,
|
||||
|
Reference in New Issue
Block a user