mirror of
https://codeberg.org/redict/redict.git
synced 2025-01-22 16:18:28 -05: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