Add LZ4 compressor

- provides significant performance improvement for saving (37% in testing)
- at the cost of double the storage size (in testing)
This commit is contained in:
mcrcortex
2025-01-31 01:50:28 +10:00
parent a0132b8c67
commit ec67222855
4 changed files with 68 additions and 0 deletions

View File

@@ -199,6 +199,8 @@ dependencies {
include(implementation 'redis.clients:jedis:5.1.0')
include(implementation('org.rocksdb:rocksdbjni:8.10.0'))
include(implementation 'org.apache.commons:commons-pool2:2.12.0')
//include(implementation 'org.tukaani:xz:1.10')
include(implementation 'org.lz4:lz4-java:1.8.0')
//implementation 'org.rocksdb:rocksdbjni:8.10.0'
//implementation 'redis.clients:jedis:5.1.0'
}