Package | Description |
---|---|
org.apache.lucene.index |
Code to maintain and access indices.
|
org.apache.lucene.util.packed |
Packed integer arrays and streams.
|
Modifier and Type | Field and Description |
---|---|
private PackedLongValues.Builder |
BinaryDocValuesWriter.lengths |
private PackedLongValues.Builder |
SortedNumericDocValuesWriter.pending |
private PackedLongValues.Builder |
NumericDocValuesWriter.pending |
private PackedLongValues.Builder |
SortedDocValuesWriter.pending |
private PackedLongValues.Builder |
SortedSetDocValuesWriter.pending |
private PackedLongValues.Builder |
NormValuesWriter.pending |
private PackedLongValues.Builder |
SortedNumericDocValuesWriter.pendingCounts |
private PackedLongValues.Builder |
SortedSetDocValuesWriter.pendingCounts |
Modifier and Type | Class and Description |
---|---|
(package private) static class |
DeltaPackedLongValues.Builder |
(package private) static class |
MonotonicLongValues.Builder |
Modifier and Type | Method and Description |
---|---|
PackedLongValues.Builder |
PackedLongValues.Builder.add(long l)
Add a new element to this builder.
|
static PackedLongValues.Builder |
PackedLongValues.deltaPackedBuilder(float acceptableOverheadRatio) |
static PackedLongValues.Builder |
PackedLongValues.deltaPackedBuilder(int pageSize,
float acceptableOverheadRatio)
Return a new
PackedLongValues.Builder that will compress efficiently integers that
are close to each other. |
static PackedLongValues.Builder |
PackedLongValues.monotonicBuilder(float acceptableOverheadRatio) |
static PackedLongValues.Builder |
PackedLongValues.monotonicBuilder(int pageSize,
float acceptableOverheadRatio)
Return a new
PackedLongValues.Builder that will compress efficiently integers that
would be a monotonic function of their index. |
static PackedLongValues.Builder |
PackedLongValues.packedBuilder(float acceptableOverheadRatio) |
static PackedLongValues.Builder |
PackedLongValues.packedBuilder(int pageSize,
float acceptableOverheadRatio)
Return a new
PackedLongValues.Builder that will compress efficiently positive integers. |