kjdev / php-ext-zstd

Zstd Extension for PHP
MIT License
201 stars 27 forks source link

Add Dictionary Compression support #2

Closed nobuf closed 7 years ago

nobuf commented 7 years ago

I've added zstd_compress_usingcdict() and zstd_decompress_usingcdict(). The code is mostly a copy of the example on zstd.

I wasn't sure if I should use uncompress. I thought decompress would be better as same as the zstd's original function. Let me know if there's any specific reason.

Thanks.

kjdev commented 7 years ago

Thanks.