Package | Description |
---|---|
parquet.column.values.bitpacking |
Class and Description |
---|
BitPacking.BitPackingReader
to read back what has been written with the corresponding writer
|
BitPacking.BitPackingWriter
to writes ints to a stream packed to only the needed bits.
|
BytePacker
Packs and unpacks into bytes
packing unpacking treats:
- n values at a time (with n % 8 == 0)
- bitWidth * (n/8) bytes at a time.
|
BytePackerFactory |
IntPacker
Packs and unpacks into ints
packing unpacking treats:
- 32 values at a time
- bitWidth ints at a time.
|
Packer
Factory for packing implementations
|
Copyright © 2015. All rights reserved.