Package | Description |
---|---|
org.apache.lucene.codecs |
Codecs API: API for customization of the encoding and structure of the index.
|
org.apache.lucene.codecs.asserting |
Codec for testing that asserts various contracts of the codec apis.
|
org.apache.lucene.codecs.blockterms |
Pluggable term index / block terms dictionary implementations.
|
org.apache.lucene.codecs.blocktree |
BlockTree terms dictionary.
|
org.apache.lucene.codecs.blocktreeords |
Same postings format as Lucene50, except the terms dictionary also
supports ords, i.e.
|
org.apache.lucene.codecs.bloom |
Codec PostingsFormat for fast access to low-frequency terms
such as primary key fields.
|
org.apache.lucene.codecs.idversion |
A primary-key postings format that associates a version (long) with each term and
can provide fail-fast lookups by ID and version.
|
org.apache.lucene.codecs.lucene50 |
Components from the Lucene 5.0 index format
See
org.apache.lucene.codecs.lucene50 for an overview
of the index format. |
org.apache.lucene.codecs.lucene53 |
Components from the Lucene 5.3 index format
See
org.apache.lucene.codecs.lucene53 for an overview
of the index format. |
org.apache.lucene.codecs.lucene54 |
Lucene 5.4 file format.
|
org.apache.lucene.codecs.lucene60 |
Components from the Lucene 6.0 index format.
|
org.apache.lucene.codecs.lucene70 |
Lucene 7.0 file format.
|
org.apache.lucene.codecs.memory |
Term dictionary, DocValues or Postings formats that are read
entirely into memory.
|
org.apache.lucene.codecs.mockrandom |
Frankenstein codec for testing that pieces together random components.
|
org.apache.lucene.codecs.perfield |
Postings format that can delegate to different formats per-field.
|
org.apache.lucene.codecs.ramonly |
Codec for testing that never writes to disk.
|
org.apache.lucene.codecs.simpletext |
Simpletext Codec: writes human readable postings.
|
org.apache.lucene.index |
Code to maintain and access indices.
|
org.apache.lucene.search.suggest.document |
Support for document suggestion
|
Modifier and Type | Method and Description |
---|---|
abstract FieldsProducer |
PostingsFormat.fieldsProducer(SegmentReadState state)
Reads a segment.
|
abstract DocValuesProducer |
DocValuesFormat.fieldsProducer(SegmentReadState state)
Returns a
DocValuesProducer to read docvalues from the index. |
abstract PointsReader |
PointsFormat.fieldsReader(SegmentReadState state)
Reads a segment.
|
abstract void |
PostingsReaderBase.init(IndexInput termsIn,
SegmentReadState state)
Performs any initialization, such as reading and
verifying the header from the provided terms
dictionary
IndexInput . |
abstract NormsProducer |
NormsFormat.normsProducer(SegmentReadState state)
Returns a
NormsProducer to read norms from the index. |
Modifier and Type | Method and Description |
---|---|
DocValuesProducer |
AssertingDocValuesFormat.fieldsProducer(SegmentReadState state) |
FieldsProducer |
AssertingPostingsFormat.fieldsProducer(SegmentReadState state) |
PointsReader |
AssertingPointsFormat.fieldsReader(SegmentReadState state) |
NormsProducer |
AssertingNormsFormat.normsProducer(SegmentReadState state) |
Modifier and Type | Method and Description |
---|---|
FieldsProducer |
LuceneVarGapFixedInterval.fieldsProducer(SegmentReadState state) |
FieldsProducer |
LuceneFixedGap.fieldsProducer(SegmentReadState state) |
FieldsProducer |
LuceneVarGapDocFreqInterval.fieldsProducer(SegmentReadState state) |
Constructor and Description |
---|
BlockTermsReader(TermsIndexReaderBase indexReader,
PostingsReaderBase postingsReader,
SegmentReadState state) |
FixedGapTermsIndexReader(SegmentReadState state) |
VariableGapTermsIndexReader(SegmentReadState state) |
Constructor and Description |
---|
BlockTreeTermsReader(PostingsReaderBase postingsReader,
SegmentReadState state)
Sole constructor.
|
Modifier and Type | Method and Description |
---|---|
FieldsProducer |
BlockTreeOrdsPostingsFormat.fieldsProducer(SegmentReadState state) |
Constructor and Description |
---|
OrdsBlockTreeTermsReader(PostingsReaderBase postingsReader,
SegmentReadState state)
Sole constructor.
|
Modifier and Type | Method and Description |
---|---|
FieldsProducer |
TestBloomFilteredLucenePostings.fieldsProducer(SegmentReadState state) |
FieldsProducer |
BloomFilteringPostingsFormat.fieldsProducer(SegmentReadState state) |
Modifier and Type | Method and Description |
---|---|
FieldsProducer |
IDVersionPostingsFormat.fieldsProducer(SegmentReadState state) |
Constructor and Description |
---|
VersionBlockTreeTermsReader(PostingsReaderBase postingsReader,
SegmentReadState state)
Sole constructor.
|
Modifier and Type | Method and Description |
---|---|
FieldsProducer |
Lucene50PostingsFormat.fieldsProducer(SegmentReadState state) |
void |
Lucene50PostingsReader.init(IndexInput termsIn,
SegmentReadState state) |
Constructor and Description |
---|
Lucene50PostingsReader(SegmentReadState state)
Sole constructor.
|
Modifier and Type | Method and Description |
---|---|
NormsProducer |
Lucene53NormsFormat.normsProducer(SegmentReadState state) |
Modifier and Type | Method and Description |
---|---|
DocValuesProducer |
Lucene54DocValuesFormat.fieldsProducer(SegmentReadState state)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
PointsReader |
Lucene60PointsFormat.fieldsReader(SegmentReadState state) |
Constructor and Description |
---|
Lucene60PointsReader(SegmentReadState readState)
Sole constructor
|
Modifier and Type | Method and Description |
---|---|
DocValuesProducer |
Lucene70DocValuesFormat.fieldsProducer(SegmentReadState state) |
NormsProducer |
Lucene70NormsFormat.normsProducer(SegmentReadState state) |
Modifier and Type | Method and Description |
---|---|
FieldsProducer |
FSTOrdPostingsFormat.fieldsProducer(SegmentReadState state) |
FieldsProducer |
FSTPostingsFormat.fieldsProducer(SegmentReadState state) |
DocValuesProducer |
MemoryDocValuesFormat.fieldsProducer(SegmentReadState state) |
FieldsProducer |
MemoryPostingsFormat.fieldsProducer(SegmentReadState state) |
DocValuesProducer |
DirectDocValuesFormat.fieldsProducer(SegmentReadState state) |
FieldsProducer |
DirectPostingsFormat.fieldsProducer(SegmentReadState state) |
Constructor and Description |
---|
FSTOrdTermsReader(SegmentReadState state,
PostingsReaderBase postingsReader) |
FSTTermsReader(SegmentReadState state,
PostingsReaderBase postingsReader) |
Modifier and Type | Method and Description |
---|---|
FieldsProducer |
MockRandomPostingsFormat.fieldsProducer(SegmentReadState state) |
Modifier and Type | Method and Description |
---|---|
DocValuesProducer |
PerFieldDocValuesFormat.fieldsProducer(SegmentReadState state) |
FieldsProducer |
PerFieldPostingsFormat.fieldsProducer(SegmentReadState state) |
Modifier and Type | Method and Description |
---|---|
FieldsProducer |
RAMOnlyPostingsFormat.fieldsProducer(SegmentReadState readState) |
Modifier and Type | Method and Description |
---|---|
PointsReader |
SimpleTextPointsFormat.fieldsReader(SegmentReadState state) |
NormsProducer |
SimpleTextNormsFormat.normsProducer(SegmentReadState state) |
Constructor and Description |
---|
SimpleTextNormsProducer(SegmentReadState state) |
Constructor and Description |
---|
SegmentReadState(SegmentReadState other,
java.lang.String newSegmentSuffix)
Create a
SegmentReadState . |
Modifier and Type | Method and Description |
---|---|
FieldsProducer |
CompletionPostingsFormat.fieldsProducer(SegmentReadState state) |
Copyright © 2000–2019 The Apache Software Foundation. All rights reserved.