Class OffHeapByteVectorValues.SparseOffHeapVectorValues
java.lang.Object
org.apache.lucene.index.KnnVectorValues
org.apache.lucene.index.ByteVectorValues
org.apache.lucene.backward_codecs.lucene94.OffHeapByteVectorValues
org.apache.lucene.backward_codecs.lucene94.OffHeapByteVectorValues.SparseOffHeapVectorValues
- Enclosing class:
OffHeapByteVectorValues
private static class OffHeapByteVectorValues.SparseOffHeapVectorValues
extends OffHeapByteVectorValues
-
Nested Class Summary
Nested classes/interfaces inherited from class org.apache.lucene.backward_codecs.lucene94.OffHeapByteVectorValues
OffHeapByteVectorValues.DenseOffHeapVectorValuesNested classes/interfaces inherited from class org.apache.lucene.index.KnnVectorValues
KnnVectorValues.DocIndexIterator -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final IndexInputprivate final IndexedDISIprivate final Lucene94HnswVectorsReader.FieldEntryprivate final DirectMonotonicReaderFields inherited from class org.apache.lucene.backward_codecs.lucene94.OffHeapByteVectorValues
binaryValue, byteBuffer, byteSize, dimension, lastOrd, size, slice, vectorSimilarityFunction -
Constructor Summary
ConstructorsConstructorDescriptionSparseOffHeapVectorValues(Lucene94HnswVectorsReader.FieldEntry fieldEntry, IndexInput dataIn, IndexInput slice, VectorSimilarityFunction vectorSimilarityFunction, int byteSize) -
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(byte[] query) Return aVectorScorerfor the given query vector.Methods inherited from class org.apache.lucene.backward_codecs.lucene94.OffHeapByteVectorValues
dimension, load, size, vectorValueMethods inherited from class org.apache.lucene.index.ByteVectorValues
checkField, fromBytes, getEncodingMethods inherited from class org.apache.lucene.index.KnnVectorValues
createDenseIterator, createSparseIterator, fromDISI, getVectorByteLength
-
Field Details
-
ordToDoc
-
disi
-
dataIn
-
fieldEntry
-
-
Constructor Details
-
SparseOffHeapVectorValues
public SparseOffHeapVectorValues(Lucene94HnswVectorsReader.FieldEntry fieldEntry, IndexInput dataIn, IndexInput slice, VectorSimilarityFunction vectorSimilarityFunction, int byteSize) throws IOException - Throws:
IOException
-
-
Method Details
-
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.- Specified by:
copyin classByteVectorValues- 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
-
iterator
Description copied from class:KnnVectorValuesCreate an iterator for this instance.- Overrides:
iteratorin 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:ByteVectorValuesReturn aVectorScorerfor the given query vector.- Overrides:
scorerin classByteVectorValues- Parameters:
query- the query vector- Returns:
- a
VectorScorerinstance or null - Throws:
IOException
-