Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ruanhaishen
redis
Commits
95380887
Unverified
Commit
95380887
authored
Jan 05, 2022
by
Binbin
Committed by
GitHub
Jan 05, 2022
Browse files
Fix typos in aof.c / redis.conf (#10057)
parent
d1b5b638
Changes
2
Hide whitespace changes
Inline
Side-by-side
redis.conf
View file @
95380887
...
@@ -1333,12 +1333,12 @@ appendonly no
...
@@ -1333,12 +1333,12 @@ appendonly no
# The base name of the append only file.
# The base name of the append only file.
#
#
# Redis 7 and newer use a set of append-only files to persist the dataset
# Redis 7 and newer use a set of append-only files to persist the dataset
# and changes appl
e
id to it. There are two basic types of files in use:
# and changes appli
e
d to it. There are two basic types of files in use:
#
#
# - Base files, which are a snapshot representing the complete state of the
# - 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
# dataset at the time the file was created. Base files can be either in
# the form of RDB (binary serialized) or AOF (textual commands).
# the form of RDB (binary serialized) or AOF (textual commands).
# - Incremen
e
tal files, which contain additional commands that were applied
# - Incremental files, which contain additional commands that were applied
# to the dataset following the previous file.
# to the dataset following the previous file.
#
#
# In addition, manifest files are used to track the files and the order in
# In addition, manifest files are used to track the files and the order in
...
...
src/aof.c
View file @
95380887
...
@@ -702,7 +702,7 @@ int aofFileExist(char *filename) {
...
@@ -702,7 +702,7 @@ int aofFileExist(char *filename) {
}
}
/* Called in `rewriteAppendOnlyFileBackground`. If `server.aof_state`
/* 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
* 1. Open a new INCR type AOF for writing
* 2. Synchronously update the manifest file to the disk
* 2. Synchronously update the manifest file to the disk
*
*
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment