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

Quick fix 2 for 3.8.0 #195

Merged
merged 4 commits into from
Feb 10, 2025
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
6 changes: 3 additions & 3 deletions config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ custom_slogan = ""

[backups]
compress_cache = true
cache_backup_limit = 10000
cache_backup_limit = 200000 # number of messages to cache
encrypted_backups = true # enables encryption for local backups (cloud backups are always encrypted)
zstd_level = 1 # compression level, -7 (best performance) - 22 (best compression). 1 is recommended.
zstd_chunk_size = 4194304 # 4MB chunk size (4 * 1024 * 1024)
zstd_threads = -1 # thread count, -1 (auto) or 1+ (manual thread count)
zstd_chunk_size = 4194304 # chunk size in bytes. default is 4MB (4 * 1024 * 1024).
zstd_threads = -1 # thread count, -1 (auto) or 1+ (manual thread count). -1 is recommended.
periodic_backup = 0
periodic_backup_cloud = 0
cloud_backup_endpoint = ""
Expand Down
Loading