summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Waldmann <tw@waldmann-edv.de>2017-12-30 01:58:32 +0100
committerThomas Waldmann <tw@waldmann-edv.de>2017-12-30 01:58:32 +0100
commit9b4202fd484d16b63abb59b311f902664b0b5644 (patch)
treef9d0b74c89eed405133278cf08cfa3b239008cf3
parentb8f6e47b427e8af109a43988af28b80daa92f70f (diff)
build_usage1.1.4
-rw-r--r--docs/usage/help.rst.inc10
1 files changed, 9 insertions, 1 deletions
diff --git a/docs/usage/help.rst.inc b/docs/usage/help.rst.inc
index bed681768..98fee7982 100644
--- a/docs/usage/help.rst.inc
+++ b/docs/usage/help.rst.inc
@@ -241,7 +241,13 @@ none
Do not compress.
lz4
- Use lz4 compression. High speed, low compression. (default)
+ Use lz4 compression. Very high speed, very low compression. (default)
+
+zstd[,L]
+ Use zstd ("zstandard") compression, a modern wide-range algorithm.
+ If you do not explicitely give the compression level L (ranging from 1
+ to 22), it will use level 3.
+ Archives compressed with zstd are not compatible with borg < 1.1.4.
zlib[,L]
Use zlib ("gz") compression. Medium speed, medium compression.
@@ -268,6 +274,8 @@ auto,C[,L]
Examples::
borg create --compression lz4 REPO::ARCHIVE data
+ borg create --compression zstd REPO::ARCHIVE data
+ borg create --compression zstd,10 REPO::ARCHIVE data
borg create --compression zlib REPO::ARCHIVE data
borg create --compression zlib,1 REPO::ARCHIVE data
borg create --compression auto,lzma,6 REPO::ARCHIVE data