Uses of Class
org.apache.lucene.codecs.KnnVectorsWriter
-
Packages that use KnnVectorsWriter Package Description org.apache.lucene.backward_codecs.lucene90 Lucene 9.0 file format.org.apache.lucene.backward_codecs.lucene91 Lucene 9.1 file format.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.codecs.simpletext Simpletext Codec: writes human readable postings.org.apache.lucene.index Code to maintain and access indices. -
-
Uses of KnnVectorsWriter in org.apache.lucene.backward_codecs.lucene90
Methods in org.apache.lucene.backward_codecs.lucene90 that return KnnVectorsWriter Modifier and Type Method Description KnnVectorsWriter
Lucene90HnswVectorsFormat. fieldsWriter(SegmentWriteState state)
-
Uses of KnnVectorsWriter in org.apache.lucene.backward_codecs.lucene91
Methods in org.apache.lucene.backward_codecs.lucene91 that return KnnVectorsWriter Modifier and Type Method Description KnnVectorsWriter
Lucene91HnswVectorsFormat. fieldsWriter(SegmentWriteState state)
-
Uses of KnnVectorsWriter in org.apache.lucene.codecs
Methods in org.apache.lucene.codecs that return KnnVectorsWriter Modifier and Type Method Description abstract KnnVectorsWriter
KnnVectorsFormat. fieldsWriter(SegmentWriteState state)
Returns aKnnVectorsWriter
to write the vectors to the index. -
Uses of KnnVectorsWriter in org.apache.lucene.codecs.lucene92
Subclasses of KnnVectorsWriter in org.apache.lucene.codecs.lucene92 Modifier and Type Class Description class
Lucene92HnswVectorsWriter
Writes vector values and knn graphs to index segments.Methods in org.apache.lucene.codecs.lucene92 that return KnnVectorsWriter Modifier and Type Method Description KnnVectorsWriter
Lucene92HnswVectorsFormat. fieldsWriter(SegmentWriteState state)
-
Uses of KnnVectorsWriter in org.apache.lucene.codecs.perfield
Subclasses of KnnVectorsWriter in org.apache.lucene.codecs.perfield Modifier and Type Class Description private class
PerFieldKnnVectorsFormat.FieldsWriter
Fields in org.apache.lucene.codecs.perfield declared as KnnVectorsWriter Modifier and Type Field Description (package private) KnnVectorsWriter
PerFieldKnnVectorsFormat.WriterAndSuffix. writer
Methods in org.apache.lucene.codecs.perfield that return KnnVectorsWriter Modifier and Type Method Description KnnVectorsWriter
PerFieldKnnVectorsFormat. fieldsWriter(SegmentWriteState state)
private KnnVectorsWriter
PerFieldKnnVectorsFormat.FieldsWriter. getInstance(FieldInfo field)
Constructors in org.apache.lucene.codecs.perfield with parameters of type KnnVectorsWriter Constructor Description WriterAndSuffix(KnnVectorsWriter writer, int suffix)
-
Uses of KnnVectorsWriter in org.apache.lucene.codecs.simpletext
Subclasses of KnnVectorsWriter in org.apache.lucene.codecs.simpletext Modifier and Type Class Description class
SimpleTextKnnVectorsWriter
Writes vector-valued fields in a plain text formatMethods in org.apache.lucene.codecs.simpletext that return KnnVectorsWriter Modifier and Type Method Description KnnVectorsWriter
SimpleTextKnnVectorsFormat. fieldsWriter(SegmentWriteState state)
-
Uses of KnnVectorsWriter in org.apache.lucene.index
Methods in org.apache.lucene.index with parameters of type KnnVectorsWriter Modifier and Type Method Description void
VectorValuesWriter. flush(Sorter.DocMap sortMap, KnnVectorsWriter knnVectorsWriter)
Flush this field's values to storage, sorting the values in accordance with sortMap
-