mirror of
https://github.com/fluencelabs/redis
synced 2025-06-18 03:31:21 +00:00
Merge branch 'master' into networking-perf
Resolved conflict in src/db.c and changed adding an error to the reply in blockingPopGenericCommand to use the new API.
This commit is contained in:
@ -1163,6 +1163,7 @@ sds genRedisInfoString(void) {
|
||||
"blocked_clients:%d\r\n"
|
||||
"used_memory:%zu\r\n"
|
||||
"used_memory_human:%s\r\n"
|
||||
"mem_fragmentation_ratio:%.2f\r\n"
|
||||
"changes_since_last_save:%lld\r\n"
|
||||
"bgsave_in_progress:%d\r\n"
|
||||
"last_save_time:%ld\r\n"
|
||||
@ -1189,6 +1190,7 @@ sds genRedisInfoString(void) {
|
||||
server.blpop_blocked_clients,
|
||||
zmalloc_used_memory(),
|
||||
hmem,
|
||||
zmalloc_get_fragmentation_ratio(),
|
||||
server.dirty,
|
||||
server.bgsavechildpid != -1,
|
||||
server.lastsave,
|
||||
|
Reference in New Issue
Block a user