| Name: | lz4-java |
|---|---|
| Version: | 1.7.1 |
| Release: | 14.module+el8.4.0+20080+2e0bae73 |
| Architecture: | x86_64 |
| Module: | jmc:ol8:8040020210304170237:deb7c738 jmc:ol8:8050020211005144542:6392b1f8 |
| Group: | Unspecified |
| Size: | 119963 |
| License: | ASL 2.0 and (BSD and GPLv2+) |
| RPM: | lz4-java-1.7.1-14.module+el8.4.0+20080+2e0bae73.x86_64.rpm |
| Source RPM: | lz4-java-1.7.1-14.module+el8.4.0+20080+2e0bae73.src.rpm |
| Build Date: | Sat Apr 10 2021 |
| Build Host: | host-100-100-224-9.blddevtest1iad.osdevelopmeniad.oraclevcn.com |
| Vendor: | Oracle America |
| URL: | https://github.com/lz4/lz4-java |
| Summary: | LZ4 compression for Java |
| Description: | LZ4 compression for Java, based on Yann Collet's work.
This library provides access to two compression methods
that both generate a valid LZ4 stream:
* fast scan (LZ4):
° low memory footprint (~ 16 KB),
° very fast (fast scan with skipping heuristics in case the
input looks incompressible),
° reasonable compression ratio (depending on the
redundancy of the input).
* high compression (LZ4 HC):
° medium memory footprint (~ 256 KB),
° rather slow (~ 10 times slower than LZ4),
° good compression ratio (depending on the size and
the redundancy of the input).
The streams produced by those 2 compression algorithms use the
same compression format, are very fast to decompress and can be
decompressed by the same decompressor instance. |