Uses of Class
org.apache.lucene.util.compress.LZ4.HashTable
-
Packages that use LZ4.HashTable Package Description org.apache.lucene.util.compress Compression utilities. -
-
Uses of LZ4.HashTable in org.apache.lucene.util.compress
Subclasses of LZ4.HashTable in org.apache.lucene.util.compress Modifier and Type Class Description static classLZ4.FastCompressionHashTableSimple lossyLZ4.HashTablethat only stores the last ocurrence for each hash on2^14bytes of memory.static classLZ4.HighCompressionHashTableA higher-precisionLZ4.HashTable.Methods in org.apache.lucene.util.compress with parameters of type LZ4.HashTable Modifier and Type Method Description static voidLZ4. compress(byte[] bytes, int off, int len, DataOutput out, LZ4.HashTable ht)Compressbytes[off:off+len]intooutusing at most 16kB of memory.static voidLZ4. compressWithDictionary(byte[] bytes, int dictOff, int dictLen, int len, DataOutput out, LZ4.HashTable ht)Compressbytes[dictOff+dictLen:dictOff+dictLen+len]intooutusing at most 16kB of memory.
-