Uses of Class
org.apache.lucene.index.SegmentWriteState
-
Packages that use SegmentWriteState Package Description org.apache.lucene.codecs Codecs API: API for customization of the encoding and structure of the index.org.apache.lucene.codecs.lucene90 Lucene 9.0 file format.org.apache.lucene.codecs.lucene90.blocktree BlockTree terms dictionary.org.apache.lucene.codecs.lucene94 Lucene 9.3 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 SegmentWriteState in org.apache.lucene.codecs
Methods in org.apache.lucene.codecs with parameters of type SegmentWriteState Modifier and Type Method Description abstract DocValuesConsumerDocValuesFormat. fieldsConsumer(SegmentWriteState state)Returns aDocValuesConsumerto write docvalues to the index.abstract FieldsConsumerPostingsFormat. fieldsConsumer(SegmentWriteState state)Writes a new segmentabstract KnnVectorsWriterKnnVectorsFormat. fieldsWriter(SegmentWriteState state)Returns aKnnVectorsWriterto write the vectors to the index.abstract PointsWriterPointsFormat. fieldsWriter(SegmentWriteState state)Writes a new segmentabstract voidPostingsWriterBase. init(IndexOutput termsOut, SegmentWriteState state)Called once after startup, before any terms have been added.abstract NormsConsumerNormsFormat. normsConsumer(SegmentWriteState state)Returns aNormsConsumerto write norms to the index. -
Uses of SegmentWriteState in org.apache.lucene.codecs.lucene90
Methods in org.apache.lucene.codecs.lucene90 with parameters of type SegmentWriteState Modifier and Type Method Description DocValuesConsumerLucene90DocValuesFormat. fieldsConsumer(SegmentWriteState state)FieldsConsumerLucene90PostingsFormat. fieldsConsumer(SegmentWriteState state)PointsWriterLucene90PointsFormat. fieldsWriter(SegmentWriteState state)voidLucene90PostingsWriter. init(IndexOutput termsOut, SegmentWriteState state)NormsConsumerLucene90NormsFormat. normsConsumer(SegmentWriteState state)Constructors in org.apache.lucene.codecs.lucene90 with parameters of type SegmentWriteState Constructor Description Lucene90PointsWriter(SegmentWriteState writeState)Uses the defaults values formaxPointsInLeafNode(1024) andmaxMBSortInHeap(16.0)Lucene90PointsWriter(SegmentWriteState writeState, int maxPointsInLeafNode, double maxMBSortInHeap)Full constructorLucene90PostingsWriter(SegmentWriteState state)Creates a postings writer -
Uses of SegmentWriteState in org.apache.lucene.codecs.lucene90.blocktree
Constructors in org.apache.lucene.codecs.lucene90.blocktree with parameters of type SegmentWriteState Constructor Description Lucene90BlockTreeTermsWriter(SegmentWriteState state, PostingsWriterBase postingsWriter, int minItemsInBlock, int maxItemsInBlock)Create a new writer. -
Uses of SegmentWriteState in org.apache.lucene.codecs.lucene94
Methods in org.apache.lucene.codecs.lucene94 with parameters of type SegmentWriteState Modifier and Type Method Description KnnVectorsWriterLucene94HnswVectorsFormat. fieldsWriter(SegmentWriteState state) -
Uses of SegmentWriteState in org.apache.lucene.codecs.perfield
Methods in org.apache.lucene.codecs.perfield with parameters of type SegmentWriteState Modifier and Type Method Description DocValuesConsumerPerFieldDocValuesFormat. fieldsConsumer(SegmentWriteState state)FieldsConsumerPerFieldPostingsFormat. fieldsConsumer(SegmentWriteState state)KnnVectorsWriterPerFieldKnnVectorsFormat. fieldsWriter(SegmentWriteState state) -
Uses of SegmentWriteState in org.apache.lucene.index
Constructors in org.apache.lucene.index with parameters of type SegmentWriteState Constructor Description SegmentWriteState(SegmentWriteState state, String segmentSuffix)Create a shallow copy ofSegmentWriteStatewith a new segment suffix.
-