Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Caching persistence config doc string #956

Merged
merged 1 commit into from
Dec 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -86,11 +86,12 @@ properties:
- "off"
- rdb
description: >-
When persistence is 'rdb', Redis does RDB dumps each 10 minutes if any key
is changed. Also RDB dumps are done according to backup schedule for
backup purposes. When persistence is 'off', no RDB dumps and backups are
done, so data can be lost at any moment if service is restarted for any
reason, or if service is powered off. Also service can't be forked.
Creates an RDB dump of the database every 10 minutes that can be used
to recover data after a node crash. The database does not create the
dump if no keys have changed since the last dump. When set to `off`,
the database cannot fork services, and data can be lost if a service
is restarted or powered off. DigitalOcean Managed Caching databases
do not support the Append Only File (AOF) persistence method.
example: rdb
redis_acl_channels_default:
type: string
Expand Down
Loading