Changed the reply of BGSAVE and BGREWRITEAOF from +OK to a more meaningful message that makes the user aware of an operation that just started and is not yet finished.

This commit is contained in:
antirez 2009-12-13 16:52:43 +01:00
parent 179b395244
commit 49b99ab43e
2 changed files with 7 additions and 2 deletions

View File

@ -3295,7 +3295,8 @@ static void bgsaveCommand(redisClient *c) {
return;
}
if (rdbSaveBackground(server.dbfilename) == REDIS_OK) {
addReply(c,shared.ok);
char *status = "+Background saving started\r\n";
addReplySds(c,sdsnew(status));
} else {
addReply(c,shared.err);
}
@ -6082,7 +6083,8 @@ static void bgrewriteaofCommand(redisClient *c) {
return;
}
if (rewriteAppendOnlyFileBackground() == REDIS_OK) {
addReply(c,shared.ok);
char *status = "+Background append only file rewriting started\r\n";
addReplySds(c,sdsnew(status));
} else {
addReply(c,shared.err);
}

View File

@ -130,6 +130,9 @@ databases 16
# log file at startup ignoring the dump.rdb file.
#
# The name of the append only file is "appendonly.log"
#
# IMPORTANT: Check the BGREWRITEAOF to check how to rewrite the append
# log file in background when it gets too big.
appendonly no