An open API service indexing awesome lists of open source software.

https://github.com/ph4r05/lz4-checkpoints

LZ4 encryptor/decryptor with checkpoint support for a random access. Can resume decompress operation of TB-large files after a crash.
https://github.com/ph4r05/lz4-checkpoints

checkpoints lz4 python random-access

Last synced: 3 months ago
JSON representation

LZ4 encryptor/decryptor with checkpoint support for a random access. Can resume decompress operation of TB-large files after a crash.

Awesome Lists containing this project

README

        

# LZ4 checkpoints

Builds LZ4 mapping file for random access

With the mapping file you can resume the LZ4 decompressor reading state at the position
of the checkpoint.

In this way you can get LZ4 random access for a very large files.

More in the blog post
[https://ph4r05.deadcode.me/blog/2017/10/04/lz4-stream-processing.html](https://ph4r05.deadcode.me/blog/2017/10/04/lz4-stream-processing.html)