Uses of Class
org.apache.lucene.index.DocsWithFieldSet
-
Packages that use DocsWithFieldSet Package Description org.apache.lucene.codecs Codecs API: API for customization of the encoding and structure of the index.org.apache.lucene.codecs.lucene95 Lucene 9.5 file format.org.apache.lucene.codecs.lucene99 Lucene 9.9 file format.org.apache.lucene.index Code to maintain and access indices. -
-
Uses of DocsWithFieldSet in org.apache.lucene.codecs
Fields in org.apache.lucene.codecs declared as DocsWithFieldSet Modifier and Type Field Description (package private) DocsWithFieldSet
BufferingKnnVectorsWriter.BufferedByteVectorValues. docsWithField
(package private) DocsWithFieldSet
BufferingKnnVectorsWriter.BufferedFloatVectorValues. docsWithField
private DocsWithFieldSet
BufferingKnnVectorsWriter.FieldWriter. docsWithField
Constructors in org.apache.lucene.codecs with parameters of type DocsWithFieldSet Constructor Description BufferedByteVectorValues(DocsWithFieldSet docsWithField, java.util.List<byte[]> vectors, int dimension)
BufferedFloatVectorValues(DocsWithFieldSet docsWithField, java.util.List<float[]> vectors, int dimension)
-
Uses of DocsWithFieldSet in org.apache.lucene.codecs.lucene95
Methods in org.apache.lucene.codecs.lucene95 with parameters of type DocsWithFieldSet Modifier and Type Method Description static void
OrdToDocDISIReaderConfiguration. writeStoredMeta(int directMonotonicBlockShift, IndexOutput outputMeta, IndexOutput vectorData, int count, int maxDoc, DocsWithFieldSet docsWithField)
Writes out the docsWithField and ordToDoc mapping to the outputMeta and vectorData respectively. -
Uses of DocsWithFieldSet in org.apache.lucene.codecs.lucene99
Fields in org.apache.lucene.codecs.lucene99 declared as DocsWithFieldSet Modifier and Type Field Description private DocsWithFieldSet
Lucene99FlatVectorsWriter.FieldWriter. docsWithField
private DocsWithFieldSet
Lucene99HnswVectorsWriter.FieldWriter. docsWithField
private DocsWithFieldSet
Lucene99ScalarQuantizedVectorsWriter.FieldWriter. docsWithField
Methods in org.apache.lucene.codecs.lucene99 that return DocsWithFieldSet Modifier and Type Method Description private static DocsWithFieldSet
Lucene99FlatVectorsWriter. writeByteVectorData(IndexOutput output, ByteVectorValues byteVectorValues)
Writes the byte vector values to the output and returns a set of documents that contains vectors.static DocsWithFieldSet
Lucene99ScalarQuantizedVectorsWriter. writeQuantizedVectorData(IndexOutput output, QuantizedByteVectorValues quantizedByteVectorValues, byte bits, boolean compress)
Writes the vector values to the output and returns a set of documents that contains vectors.private static DocsWithFieldSet
Lucene99FlatVectorsWriter. writeVectorData(IndexOutput output, FloatVectorValues floatVectorValues)
Writes the vector values to the output and returns a set of documents that contains vectors.Methods in org.apache.lucene.codecs.lucene99 with parameters of type DocsWithFieldSet Modifier and Type Method Description private void
Lucene99FlatVectorsWriter. writeMeta(FieldInfo field, int maxDoc, long vectorDataOffset, long vectorDataLength, DocsWithFieldSet docsWithField)
private void
Lucene99ScalarQuantizedVectorsWriter. writeMeta(FieldInfo field, int maxDoc, long vectorDataOffset, long vectorDataLength, java.lang.Float confidenceInterval, byte bits, boolean compress, java.lang.Float lowerQuantile, java.lang.Float upperQuantile, DocsWithFieldSet docsWithField)
-
Uses of DocsWithFieldSet in org.apache.lucene.index
Fields in org.apache.lucene.index declared as DocsWithFieldSet Modifier and Type Field Description private DocsWithFieldSet
BinaryDocValuesWriter. docsWithField
private DocsWithFieldSet
NormValuesWriter. docsWithField
private DocsWithFieldSet
NumericDocValuesWriter. docsWithField
private DocsWithFieldSet
SortedDocValuesWriter. docsWithField
private DocsWithFieldSet
SortedNumericDocValuesWriter. docsWithField
private DocsWithFieldSet
SortedSetDocValuesWriter. docsWithField
Methods in org.apache.lucene.index with parameters of type DocsWithFieldSet Modifier and Type Method Description (package private) static DocValuesProducer
NumericDocValuesWriter. getDocValuesProducer(FieldInfo writerFieldInfo, PackedLongValues values, DocsWithFieldSet docsWithField, Sorter.DocMap sortMap)
(package private) static DocValuesProducer
SortedDocValuesWriter. getDocValuesProducer(FieldInfo writerFieldInfo, BytesRefHash hash, PackedLongValues ords, int[] sortedValues, int[] ordMap, DocsWithFieldSet docsWithField, Sorter.DocMap sortMap)
private SortedNumericDocValues
SortedNumericDocValuesWriter. getValues(PackedLongValues values, PackedLongValues valueCounts, DocsWithFieldSet docsWithField)
private SortedSetDocValues
SortedSetDocValuesWriter. getValues(int[] sortedValues, int[] ordMap, BytesRefHash hash, PackedLongValues ords, PackedLongValues ordCounts, int maxCount, DocsWithFieldSet docsWithField)
-