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 class
Simple lossyLZ4.HashTable
that only stores the last ocurrence for each hash on2^14
bytes of memory.static final class
A higher-precisionLZ4.HashTable
.Methods in org.apache.lucene.util.compress with parameters of type LZ4.HashTableModifier and TypeMethodDescriptionstatic void
LZ4.compress
(byte[] bytes, int off, int len, DataOutput out, LZ4.HashTable ht) Compressbytes[off:off+len]
intoout
using at most 16kB of memory.static void
LZ4.compressWithDictionary
(byte[] bytes, int dictOff, int dictLen, int len, DataOutput out, LZ4.HashTable ht) Compressbytes[dictOff+dictLen:dictOff+dictLen+len]
intoout
using at most 16kB of memory.