mirror of
http://github.com/valkey-io/valkey
synced 2024-11-23 11:51:01 +00:00
redis-cli --stat: show LOAD when loading.
This commit is contained in:
parent
8696874d75
commit
05841a6386
@ -1945,6 +1945,7 @@ static void statMode(void) {
|
|||||||
/* Children */
|
/* Children */
|
||||||
aux = getLongInfoField(reply->str,"bgsave_in_progress");
|
aux = getLongInfoField(reply->str,"bgsave_in_progress");
|
||||||
aux |= getLongInfoField(reply->str,"aof_rewrite_in_progress") << 1;
|
aux |= getLongInfoField(reply->str,"aof_rewrite_in_progress") << 1;
|
||||||
|
aux |= getLongInfoField(reply->str,"loading") << 2;
|
||||||
switch(aux) {
|
switch(aux) {
|
||||||
case 0: break;
|
case 0: break;
|
||||||
case 1:
|
case 1:
|
||||||
@ -1956,6 +1957,9 @@ static void statMode(void) {
|
|||||||
case 3:
|
case 3:
|
||||||
printf("SAVE+AOF");
|
printf("SAVE+AOF");
|
||||||
break;
|
break;
|
||||||
|
case 4:
|
||||||
|
printf("LOAD");
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
printf("\n");
|
printf("\n");
|
||||||
|
Loading…
Reference in New Issue
Block a user