lz4-java icon indicating copy to clipboard operation
lz4-java copied to clipboard

LZ4 compression for Java

Results 76 lz4-java issues
Sort by recently updated
recently updated
newest added
trafficstars

Exception in thread "main" net.jpountz.lz4.LZ4Exception: Malformed input at 8 at net.jpountz.lz4.LZ4JavaUnsafeFastDecompressor.decompress(LZ4JavaUnsafeFastDecompressor.java:77)

Hello, I read that lz4 compression with double buffering is much more efficient do you know if it's supported? I didn't try to implement yet it's just a genuine question...

``` Random random = new Random(); data = new byte[4194304]; random.nextBytes(data); ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream(); LZ4FrameOutputStream lz4FrameOutputStream = new LZ4FrameOutputStream(byteArrayOutputStream); lz4FrameOutputStream.write(data); lz4FrameOutputStream.close(); byte[] compressedBytes = byteArrayOutputStream.toByteArray(); LZ4FrameInputStream compressedInputStream =...

I find arm64 in src/lz4/programs/platform.h but how to build 'arm64/liblz4-java.so' ?

Fixes https://github.com/lz4/lz4-java/issues/218 Added a system property "net.jpountz.lz4.PREFER_NATIVE" (defaults to true when absent). By setting "net.jpountz.lz4.PREFER_NATIVE=false" we can prefer the java version in LZ4Factory.fastestInstance().

for example mapdb is hardcoded to this, but native version might segfault/crash the jvm sometimes. So add an option to disable native version for any library despite hardcoding to this...

Relates to #94 Would it be possible to include the source files generated from the `src/build/source_templates` files in the `...-sources.jar` deployed to Maven Central? That would allow to debug through...

As the title suggests. A warning is given on the LZ4 wiki page that this library does not conform the LZ4 standard and will not work with standard tooling. This...

It would be nice if `lz4-java` were updated to use the latest version of `lz4` : https://github.com/lz4/lz4/releases/tag/v1.10.0

There is a vulnerability on lz4 : https://ciam.cisco.com/corona/cves/CVE-2021-3520/ https://nvd.nist.gov/vuln/detail/CVE-2021-3520 And the fix is available in lz4-1.9.4. Current latest version available for lz4-java is 1.8.0 Are there any plans to upgrade...