Package | Description |
---|---|
org.apache.lucene.codecs |
Codecs API: API for customization of the encoding and structure of the index.
|
org.apache.lucene.codecs.blocktree |
BlockTree terms dictionary.
|
org.apache.lucene.codecs.lucene80 |
Components from the Lucene 8.0 index format
See
org.apache.lucene.codecs.lucene84 for an overview
of the index format. |
org.apache.lucene.index |
Code to maintain and access indices.
|
Modifier and Type | Method and Description |
---|---|
NormsProducer |
NormsProducer.getMergeInstance()
Returns an instance optimized for merging.
|
abstract NormsProducer |
NormsFormat.normsProducer(SegmentReadState state)
Returns a
NormsProducer to read norms from the index. |
Modifier and Type | Method and Description |
---|---|
abstract void |
NormsConsumer.addNormsField(FieldInfo field,
NormsProducer normsProducer)
Writes normalization values for a field.
|
void |
FieldsConsumer.merge(MergeState mergeState,
NormsProducer norms)
Merges in the fields from the readers in
mergeState . |
abstract void |
FieldsConsumer.write(Fields fields,
NormsProducer norms)
Write all fields, terms and postings.
|
BlockTermState |
PushPostingsWriterBase.writeTerm(BytesRef term,
TermsEnum termsEnum,
FixedBitSet docsSeen,
NormsProducer norms) |
abstract BlockTermState |
PostingsWriterBase.writeTerm(BytesRef term,
TermsEnum termsEnum,
FixedBitSet docsSeen,
NormsProducer norms)
Write all postings for one term; use the provided
TermsEnum to pull a PostingsEnum . |
Modifier and Type | Method and Description |
---|---|
void |
BlockTreeTermsWriter.write(Fields fields,
NormsProducer norms) |
Modifier and Type | Method and Description |
---|---|
NormsProducer |
Lucene80NormsFormat.normsProducer(SegmentReadState state) |
Modifier and Type | Field and Description |
---|---|
NormsProducer[] |
MergeState.normsProducers
Norms producers being merged
|
Modifier and Type | Method and Description |
---|---|
NormsProducer |
SegmentReader.getNormsReader() |
abstract NormsProducer |
CodecReader.getNormsReader()
Expert: retrieve underlying NormsProducer
|
NormsProducer |
FilterCodecReader.getNormsReader() |
NormsProducer |
SortingCodecReader.getNormsReader() |
Copyright © 2000-2021 Apache Software Foundation. All Rights Reserved.