diff options
author | Yann Collet <Cyan4973@users.noreply.github.com> | 2019-04-11 22:43:40 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-11 22:43:40 (GMT) |
commit | 780aac520b69d6369f4e3995624c37e56d75498d (patch) | |
tree | 7b192662cba336b688b23ea04fcd6f48cbb3fc48 /doc/lz4frame_manual.html | |
parent | 723ba904e2393c69d01f6730bd8b4171e6182845 (diff) | |
parent | bcb26565a732062759a2428e167e27ad3c2f6e96 (diff) | |
download | lz4-780aac520b69d6369f4e3995624c37e56d75498d.zip lz4-780aac520b69d6369f4e3995624c37e56d75498d.tar.gz lz4-780aac520b69d6369f4e3995624c37e56d75498d.tar.bz2 |
Merge pull request #665 from lz4/dict
Dictionary compression
Diffstat (limited to 'doc/lz4frame_manual.html')
-rw-r--r-- | doc/lz4frame_manual.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/lz4frame_manual.html b/doc/lz4frame_manual.html index d5496a1..914405f 100644 --- a/doc/lz4frame_manual.html +++ b/doc/lz4frame_manual.html @@ -343,7 +343,7 @@ LZ4F_errorCode_t LZ4F_freeDecompressionContext(LZ4F_dctx* dctx); <pre><b>LZ4FLIB_STATIC_API LZ4F_CDict* LZ4F_createCDict(const void* dictBuffer, size_t dictSize); LZ4FLIB_STATIC_API void LZ4F_freeCDict(LZ4F_CDict* CDict); -</b><p> When compressing multiple messages / blocks with the same dictionary, it's recommended to load it just once. +</b><p> When compressing multiple messages / blocks using the same dictionary, it's recommended to load it just once. LZ4_createCDict() will create a digested dictionary, ready to start future compression operations without startup delay. LZ4_CDict can be created once and shared by multiple threads concurrently, since its usage is read-only. `dictBuffer` can be released after LZ4_CDict creation, since its content is copied within CDict |