Class OffHeapFloatVectorValues
java.lang.Object
org.apache.lucene.search.DocIdSetIterator
org.apache.lucene.index.FloatVectorValues
org.apache.lucene.backward_codecs.lucene92.OffHeapFloatVectorValues
- All Implemented Interfaces:
RandomAccessVectorValues<float[]>
- Direct Known Subclasses:
OffHeapFloatVectorValues.DenseOffHeapVectorValues
,OffHeapFloatVectorValues.EmptyOffHeapVectorValues
,OffHeapFloatVectorValues.SparseOffHeapVectorValues
abstract class OffHeapFloatVectorValues
extends FloatVectorValues
implements RandomAccessVectorValues<float[]>
Read the vector values from the index input. This supports both iterated and random access.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescription(package private) static class
private static class
private static class
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected final int
protected final int
protected int
protected final int
protected final IndexInput
protected final float[]
Fields inherited from class org.apache.lucene.search.DocIdSetIterator
NO_MORE_DOCS
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionint
Return the dimension of the vectors(package private) static OffHeapFloatVectorValues
load
(Lucene92HnswVectorsReader.FieldEntry fieldEntry, IndexInput vectorData) int
size()
Return the number of vectors for this field.float[]
vectorValue
(int targetOrd) Return the vector value indexed at the given ordinal.Methods inherited from class org.apache.lucene.index.FloatVectorValues
cost, vectorValue
Methods inherited from class org.apache.lucene.search.DocIdSetIterator
advance, all, docID, empty, nextDoc, range, slowAdvance
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.apache.lucene.util.hnsw.RandomAccessVectorValues
copy, getAcceptOrds, ordToDoc
-
Field Details
-
dimension
protected final int dimension -
size
protected final int size -
slice
-
byteSize
protected final int byteSize -
lastOrd
protected int lastOrd -
value
protected final float[] value
-
-
Constructor Details
-
OffHeapFloatVectorValues
OffHeapFloatVectorValues(int dimension, int size, IndexInput slice)
-
-
Method Details
-
dimension
public int dimension()Description copied from class:FloatVectorValues
Return the dimension of the vectors- Specified by:
dimension
in interfaceRandomAccessVectorValues<float[]>
- Specified by:
dimension
in classFloatVectorValues
-
size
public int size()Description copied from class:FloatVectorValues
Return the number of vectors for this field.- Specified by:
size
in interfaceRandomAccessVectorValues<float[]>
- Specified by:
size
in classFloatVectorValues
- Returns:
- the number of vectors returned by this iterator
-
vectorValue
Description copied from interface:RandomAccessVectorValues
Return the vector value indexed at the given ordinal.- Specified by:
vectorValue
in interfaceRandomAccessVectorValues<float[]>
- Parameters:
targetOrd
- a valid ordinal, ≥ 0 and <RandomAccessVectorValues.size()
.- Throws:
IOException
-
load
static OffHeapFloatVectorValues load(Lucene92HnswVectorsReader.FieldEntry fieldEntry, IndexInput vectorData) throws IOException - Throws:
IOException
-