Uses of Class
org.apache.lucene.codecs.KnnVectorsReader
-
Packages that use KnnVectorsReader Package Description org.apache.lucene.codecs Codecs API: API for customization of the encoding and structure of the index.org.apache.lucene.codecs.lucene92 Lucene 9.2 file format.org.apache.lucene.codecs.perfield Postings format that can delegate to different formats per-field.org.apache.lucene.index Code to maintain and access indices. -
-
Uses of KnnVectorsReader in org.apache.lucene.codecs
Methods in org.apache.lucene.codecs that return KnnVectorsReader Modifier and Type Method Description abstract KnnVectorsReaderKnnVectorsFormat. fieldsReader(SegmentReadState state)Returns aKnnVectorsReaderto read the vectors from the index.KnnVectorsReaderKnnVectorsReader. getMergeInstance()Returns an instance optimized for merging.Methods in org.apache.lucene.codecs with parameters of type KnnVectorsReader Modifier and Type Method Description abstract voidKnnVectorsWriter. writeField(FieldInfo fieldInfo, KnnVectorsReader knnVectorsReader)Write all values contained in the provided reader -
Uses of KnnVectorsReader in org.apache.lucene.codecs.lucene92
Subclasses of KnnVectorsReader in org.apache.lucene.codecs.lucene92 Modifier and Type Class Description classLucene92HnswVectorsReaderReads vectors from the index segments along with index data structures supporting KNN search.Methods in org.apache.lucene.codecs.lucene92 that return KnnVectorsReader Modifier and Type Method Description KnnVectorsReaderLucene92HnswVectorsFormat. fieldsReader(SegmentReadState state)Methods in org.apache.lucene.codecs.lucene92 with parameters of type KnnVectorsReader Modifier and Type Method Description voidLucene92HnswVectorsWriter. writeField(FieldInfo fieldInfo, KnnVectorsReader knnVectorsReader) -
Uses of KnnVectorsReader in org.apache.lucene.codecs.perfield
Subclasses of KnnVectorsReader in org.apache.lucene.codecs.perfield Modifier and Type Class Description static classPerFieldKnnVectorsFormat.FieldsReaderVectorReader that can wrap multiple delegate readers, selected by field.Methods in org.apache.lucene.codecs.perfield that return KnnVectorsReader Modifier and Type Method Description KnnVectorsReaderPerFieldKnnVectorsFormat. fieldsReader(SegmentReadState state)KnnVectorsReaderPerFieldKnnVectorsFormat.FieldsReader. getFieldReader(String field)Return the underlying VectorReader for the given field -
Uses of KnnVectorsReader in org.apache.lucene.index
Fields in org.apache.lucene.index declared as KnnVectorsReader Modifier and Type Field Description KnnVectorsReader[]MergeState. knnVectorsReadersVector readers to mergeMethods in org.apache.lucene.index that return KnnVectorsReader Modifier and Type Method Description abstract KnnVectorsReaderCodecReader. getVectorReader()Expert: retrieve underlying VectorReaderKnnVectorsReaderFilterCodecReader. getVectorReader()KnnVectorsReaderSegmentReader. getVectorReader()KnnVectorsReaderSortingCodecReader. getVectorReader()
-