Lucene41中的PackedInts

ackedInts中提供了两种format,一个是Packed,可按long或字节对齐,另一个是PACKED_SINGLE_BLOCK.可以按照不同overheadRatio来选择对应FormatAndBits,调用fastestFormatAndBits就可以。
另外这个文件提供了ecoder,Encoder,Reader,ReaderIterator,Mutable等接口。

实现了Mutable接口的有:Packed64SingleBlock,Packed8ThreeBlocks,Packed16ThreeBlocks,Direct8,Direct16,Direct32,Direct64.

性能评估:

http://blog.jpountz.net/post/25530978824/how-fast-is-bit-packing

你可能感兴趣的:(搜索引擎,Lucene,索引技术)