Uses of Class
org.apache.lucene.util.compress.LZ4.HashTable
Packages that use LZ4.HashTable
-
Uses of LZ4.HashTable in org.apache.lucene.util.compress
Subclasses of LZ4.HashTable in org.apache.lucene.util.compressModifier and TypeClassDescriptionstatic final classSimple lossyLZ4.HashTablethat only stores the last ocurrence for each hash on2^14bytes of memory.static final classA higher-precisionLZ4.HashTable.Methods in org.apache.lucene.util.compress with parameters of type LZ4.HashTableModifier and TypeMethodDescriptionstatic 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.