Unverified Commit 95380887 authored by Binbin's avatar Binbin Committed by GitHub
Browse files

Fix typos in aof.c / redis.conf (#10057)

parent d1b5b638
......@@ -1333,12 +1333,12 @@ appendonly no
# The base name of the append only file.
#
# Redis 7 and newer use a set of append-only files to persist the dataset
# and changes appleid to it. There are two basic types of files in use:
# and changes applied to it. There are two basic types of files in use:
#
# - Base files, which are a snapshot representing the complete state of the
# dataset at the time the file was created. Base files can be either in
# the form of RDB (binary serialized) or AOF (textual commands).
# - Incremenetal files, which contain additional commands that were applied
# - Incremental files, which contain additional commands that were applied
# to the dataset following the previous file.
#
# In addition, manifest files are used to track the files and the order in
......
......@@ -702,7 +702,7 @@ int aofFileExist(char *filename) {
}
/* Called in `rewriteAppendOnlyFileBackground`. If `server.aof_state`
* is 'AOF_ON' or AOF_WAIT_REWRITE', It will do two things:
* is 'AOF_ON' or 'AOF_WAIT_REWRITE', It will do two things:
* 1. Open a new INCR type AOF for writing
* 2. Synchronously update the manifest file to the disk
*
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment