Docker
Write an awesome doc for Docker, Docker Compose, and everything else in this domain. You can find invaluable examples and explanations here. I am trying to keep it up to date and relevant too. BTW if you also have a cool idea, or example open a PR/issue/discussion.
Glossary
-
#
RDB
- Stands for Redis Database Backup.
- A file.
-
A dump of all user data stored in an internal, compressed serialization format at a particular timestamp which is used for point-in-time recovery (recovery from a timestamp).
- Snapshot style persistence format
-
#
AOF
- Stands for Append Only File.
-
A persistence technique in which an
RDB
file is generated once, and all the data is appended to it as it comes.
- Change-log style persistent format.
-
By default Redis saves snapshots of the dataset on disk, in a binary file called
dump.rdb
.
-
#