Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork32k
gh-132983: Add documentation for compression.zstd#133911
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Changes from1 commit
49d9c30
62ef4dc
0b154b1
63f963f
cfe0590
5115b4c
4ab7fd7
5eb5efc
987bd27
615ed7f
0f7bc05
44173f3
8bd5500
24f3761
d04ce4f
e61e9a1
1149832
71ed7c3
2f895dd
f25e6e7
9ff6320
daa9df1
b3fd3cd
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
Co-authored-by: Stan Ulbrych <89152624+StanFromIreland@users.noreply.github.com>
- Loading branch information
Uh oh!
There was an error while loading.Please reload this page.
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -165,8 +165,8 @@ Compressing and decompressing data in memory | ||
parameters. The valid keys and values for compression parameters are | ||
documented as part of the :class:`CompressionParameter` documentation. | ||
The *zstd_dict* argument is an instance of :class:`ZstdDict` | ||
containing trained data to improve compression efficiency. The | ||
function :func:`train_dict` can be used to generate a Zstandard dictionary. | ||
@@ -180,8 +180,8 @@ Compressing and decompressing data in memory | ||
parameters are documented as part of the :class:`DecompressionParameter` | ||
documentation. | ||
The *zstd_dict* argument is an instance of :class:`ZstdDict` | ||
containing trained data used during compression. This must be | ||
the same Zstandard dictionary used during compression. | ||
If *data* is the concatenation of multiple distinct compressed frames, | ||
@@ -205,8 +205,8 @@ Compressing and decompressing data in memory | ||
parameters. The valid keys and values for compression parameters are | ||
documented as part of the :class:`CompressionParameter` documentation. | ||
The *zstd_dict* argument is an instance of :class:`ZstdDict` | ||
emmatyping marked this conversation as resolved. Show resolvedHide resolvedUh oh!There was an error while loading.Please reload this page. | ||
containing trained data to improve compression efficiency. The | ||
function :func:`train_dict` can be used to generate a Zstandard dictionary. | ||
.. attribute:: CONTINUE | ||
emmatyping marked this conversation as resolved. Show resolvedHide resolvedUh oh!There was an error while loading.Please reload this page. | ||
@@ -266,8 +266,8 @@ Compressing and decompressing data in memory | ||
parameters are documented as part of the :class:`DecompressionParameter` | ||
documentation. | ||
The *zstd_dict* argument is an instance of :class:`ZstdDict` | ||
containing trained data used during compression. This must be | ||
the same Zstandard dictionary used during compression. | ||
.. note:: | ||
Uh oh!
There was an error while loading.Please reload this page.