All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ning.compress.lzf.parallel.package-info Maven / Gradle / Ivy

Go to download

Compression codec for LZF encoding for particularly encoding/decoding, with reasonable compression. Compressor is basic Lempel-Ziv codec, without Huffman (deflate/gzip) or statistical post-encoding. See "http://oldhome.schmorp.de/marc/liblzf.html" for more on original LZF package.

There is a newer version: 1.1.2
Show newest version
/**
Package that contains parallel implementation of LZF compressor: granularity
is at chunk-level, so that each processing thread operates on a single chunk
at a time (and conversely, no chunk is "split" across threads).

The main abstraction to use is {@link com.ning.compress.lzf.parallel.PLZFOutputStream}, which orchestrates operation of multi-thread compression. */ package com.ning.compress.lzf.parallel;





© 2015 - 2024 Weber Informatics LLC | Privacy Policy