You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Request to add CompressBlockWithDict(src, dst, dict []byte).
Decompression with dictionary seems to be already supported by UncompressBlockWithDict(src, dst, dict []byte).
It could also use some documentation regarding the format of the dictionary and how to generate it. Probably this still applies:
lz4 doesn't specify how to build a dictionary. All it says is that it can be any file up to 64 KB.
This approach is compatible with zstd dictionary builder, which can be instructed to create a 64 KB dictionary with this command: zstd --train dirSamples/* -o dictName --maxdict=64KB
The text was updated successfully, but these errors were encountered:
Request to add
CompressBlockWithDict(src, dst, dict []byte)
.Decompression with dictionary seems to be already supported by
UncompressBlockWithDict(src, dst, dict []byte)
.It could also use some documentation regarding the format of the dictionary and how to generate it. Probably this still applies:
The text was updated successfully, but these errors were encountered: