luben / zstd-jni

JNI binding for Zstd
Other
854 stars 168 forks source link

Add support for multiple dictionary references in streaming decompression #262

Closed Alex1OPS closed 1 year ago

Alex1OPS commented 1 year ago

resolves #261.

Added setting ZSTD_d_refMultipleDDicts that enables support for multiple dictionary references in a decompression streaming context. With refMultipleDDicts -> true, zstd searches for a suitable dictionary by matching the dictionaryId in the frame among known dictionaries (loaded via setDict).

luben commented 1 year ago

LGTM, thanks for the contribution