Package me.lemire.integercompression

Interface Summary
ByteIntegerCODEC Interface describing a CODEC to compress integers to bytes.
IntegerCODEC Interface describing a standard CODEC to compress integers.
IntegratedByteIntegerCODEC Interface describing a CODEC to compress integers to bytes.
IntegratedIntegerCODEC This is just like IntegerCODEC, except that it indicates that delta coding is "integrated", so that you don't need a separate step for delta coding.
 

Class Summary
BinaryPacking Scheme based on a commonly used idea: can be extremely fast.
BitPacking Bitpacking routines
Composition Helper class to compose schemes.
Delta Generic class to compute differential coding.
DeltaZigzagBinaryPacking BinaryPacking with Delta+Zigzag Encoding.
DeltaZigzagEncoding Delta+Zigzag Encoding.
DeltaZigzagVariableByte VariableByte with Delta+Zigzag Encoding.
FastPFOR This is a patching scheme designed for speed.
IntegratedBinaryPacking Scheme based on a commonly used idea: can be extremely fast.
IntegratedBitPacking "Integrated" bit packing routines: they include both the bit packing and the differential coding.
IntegratedComposition Helper class to compose schemes.
IntegratedFastPFOR This is an integrated version of FastPFOR meaning that it computes differential coding as part of the compression.
IntegratedVariableByte Implementation of variable-byte with differential coding.
IntWrapper Essentially a mutable wrapper around an integer.
JustCopy  
NewPFD NewPFD/NewPFOR: fast patching scheme by Yan et al.
NewPFDS16 NewPFD/NewPFOR based on Simple16 by Yan et al.
NewPFDS9 NewPFD/NewPFOR based on Simple9 by Yan et al.
OptPFD OptPFD: fast patching scheme by Yan et al.
OptPFDS16 OptPFD based on Simple16 by Yan et al.
OptPFDS9 OptPFD based on Simple9 by Yan et al.
S16 Version of Simple16 for NewPFD and OptPFD.
S9 This is a version of Simple9 optimized for NewPFOR, OptPFOR
Simple9 This is an implementation of the popular Simple9 scheme.
Util Routine utility functions.
VariableByte Implementation of variable-byte.
XorBinaryPacking BinaryPacking over XOR differential.
 



Copyright © 2014. All Rights Reserved.