Module org.apache.lucene.core
Class OffHeapQuantizedByteVectorValues.SparseOffHeapVectorValues
java.lang.Object
org.apache.lucene.index.KnnVectorValues
org.apache.lucene.index.ByteVectorValues
org.apache.lucene.util.quantization.QuantizedByteVectorValues
org.apache.lucene.codecs.lucene99.OffHeapQuantizedByteVectorValues
org.apache.lucene.codecs.lucene99.OffHeapQuantizedByteVectorValues.SparseOffHeapVectorValues
- All Implemented Interfaces:
HasIndexSlice
- Enclosing class:
OffHeapQuantizedByteVectorValues
private static class OffHeapQuantizedByteVectorValues.SparseOffHeapVectorValues
extends OffHeapQuantizedByteVectorValues
-
Nested Class Summary
Nested classes/interfaces inherited from class org.apache.lucene.codecs.lucene99.OffHeapQuantizedByteVectorValues
OffHeapQuantizedByteVectorValues.DenseOffHeapVectorValuesNested classes/interfaces inherited from class org.apache.lucene.index.KnnVectorValues
KnnVectorValues.DocIndexIterator -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final OrdToDocDISIReaderConfigurationprivate final IndexInputprivate final IndexedDISIprivate final DirectMonotonicReaderFields inherited from class org.apache.lucene.codecs.lucene99.OffHeapQuantizedByteVectorValues
binaryValue, byteBuffer, byteSize, compress, dimension, lastOrd, numBytes, scalarQuantizer, scoreCorrectionConstant, similarityFunction, size, slice, vectorsScorer -
Constructor Summary
ConstructorsConstructorDescriptionSparseOffHeapVectorValues(OrdToDocDISIReaderConfiguration configuration, int dimension, int size, ScalarQuantizer scalarQuantizer, boolean compress, IndexInput dataIn, VectorSimilarityFunction similarityFunction, FlatVectorsScorer vectorsScorer, IndexInput slice) -
Method Summary
Modifier and TypeMethodDescriptioncopy()Creates a new copy of thisKnnVectorValues.getAcceptOrds(Bits acceptDocs) Returns a Bits accepting docs accepted by the argument and having a vector valueiterator()Create an iterator for this instance.intordToDoc(int ord) Return the docid of the document indexed with the given vector ordinal.scorer(float[] target) Return aVectorScorerfor the given query vector.Methods inherited from class org.apache.lucene.codecs.lucene99.OffHeapQuantizedByteVectorValues
compressBytes, compressedArray, decompressBytes, dimension, getScalarQuantizer, getScoreCorrectionConstant, getSlice, getVectorByteLength, load, size, vectorValueMethods inherited from class org.apache.lucene.index.ByteVectorValues
checkField, fromBytes, getEncoding, scorerMethods inherited from class org.apache.lucene.index.KnnVectorValues
createDenseIterator, createSparseIterator, fromDISI
-
Field Details
-
ordToDoc
-
disi
-
dataIn
-
configuration
-
-
Constructor Details
-
SparseOffHeapVectorValues
public SparseOffHeapVectorValues(OrdToDocDISIReaderConfiguration configuration, int dimension, int size, ScalarQuantizer scalarQuantizer, boolean compress, IndexInput dataIn, VectorSimilarityFunction similarityFunction, FlatVectorsScorer vectorsScorer, IndexInput slice) throws IOException - Throws:
IOException
-
-
Method Details
-
iterator
Description copied from class:KnnVectorValuesCreate an iterator for this instance.- Overrides:
iteratorin classKnnVectorValues
-
copy
Description copied from class:KnnVectorValuesCreates a new copy of thisKnnVectorValues. This is helpful when you need to access different values at once, to avoid overwriting the underlying vector returned.- Overrides:
copyin classQuantizedByteVectorValues- Throws:
IOException
-
ordToDoc
public int ordToDoc(int ord) Description copied from class:KnnVectorValuesReturn the docid of the document indexed with the given vector ordinal. This default implementation returns the argument and is appropriate for dense values implementations where every doc has a single value.- Overrides:
ordToDocin classKnnVectorValues
-
getAcceptOrds
Description copied from class:KnnVectorValuesReturns a Bits accepting docs accepted by the argument and having a vector value- Overrides:
getAcceptOrdsin classKnnVectorValues
-
scorer
Description copied from class:QuantizedByteVectorValuesReturn aVectorScorerfor the given query vector.- Overrides:
scorerin classQuantizedByteVectorValues- Parameters:
target- the query vector- Returns:
- a
VectorScorerinstance or null - Throws:
IOException
-