Uses of Class
org.apache.lucene.util.bkd.BKDRadixSelector
-
Packages that use BKDRadixSelector Package Description org.apache.lucene.codecs.simpletext Simpletext Codec: writes human readable postings.org.apache.lucene.util.bkd Block KD-tree, implementing the generic spatial data structure described in this paper. -
-
Uses of BKDRadixSelector in org.apache.lucene.codecs.simpletext
Methods in org.apache.lucene.codecs.simpletext with parameters of type BKDRadixSelector Modifier and Type Method Description private void
SimpleTextBKDWriter. build(int nodeID, int leafNodeOffset, BKDRadixSelector.PathSlice points, IndexOutput out, BKDRadixSelector radixSelector, byte[] minPackedValue, byte[] maxPackedValue, byte[] splitPackedValues, long[] leafBlockFPs, int[] spareDocIds)
The array (sized numDims) of PathSlice describe the cell we have currently recursed to. -
Uses of BKDRadixSelector in org.apache.lucene.util.bkd
Methods in org.apache.lucene.util.bkd with parameters of type BKDRadixSelector Modifier and Type Method Description private void
BKDWriter. build(int leavesOffset, int numLeaves, BKDRadixSelector.PathSlice points, IndexOutput out, BKDRadixSelector radixSelector, byte[] minPackedValue, byte[] maxPackedValue, int[] parentSplits, byte[] splitPackedValues, byte[] splitDimensionValues, long[] leafBlockFPs, int[] spareDocIds)
The point writer contains the data that is going to be splitted using radix selection.
-