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

[databases]: update a description for redis_ssl in redis advanced config #1262

Merged
merged 1 commit into from
Nov 4, 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
2 changes: 2 additions & 0 deletions docs/resources/database_redis_config.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ for additional details on each option.
* `lfu_log_factor` - (Optional) The counter logarithm factor for volatile-lfu and allkeys-lfu maxmemory policies.
* `lfu_decay_time` - (Optional) The LFU maxmemory policy counter decay time in minutes.
* `ssl` - (Optional) A boolean indicating whether to require SSL to access Redis.
- When enabled, Redis accepts only SSL connections on port `25061`.
- When disabled, port `25060` is opened for non-SSL connections, while port `25061` remains available for SSL connections.
* `timeout` - (Optional) The Redis idle connection timeout in seconds.
* `notify_keyspace_events` - (Optional) The `notify-keyspace-events` option. Requires at least `K` or `E`.
* `persistence` - (Optional) 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.
Expand Down
Loading