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.compressing |
StoredFieldsFormat that allows cross-document and cross-field compression of stored 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.lucene53 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.lucene54 for an overview
of the index format. |
org.apache.lucene.codecs.lucene54 |
Lucene 5.4 file format.
|
org.apache.lucene.codecs.lucene60 |
Lucene 6.0 file format.
|
org.apache.lucene.index |
Code to maintain and access indices.
|
org.apache.lucene.index.memory |
High-performance single-document main memory Apache Lucene fulltext search index.
|
org.apache.lucene.search.highlight |
Highlighting search terms.
|
org.apache.lucene.uninverting |
Support for creating docvalues on-the-fly from the inverted index at runtime.
|
Modifier and Type | Field and Description |
---|---|
(package private) FieldInfos |
StoredFieldsWriter.MergeVisitor.remapper |
Modifier and Type | Method and Description |
---|---|
abstract FieldInfos |
FieldInfosFormat.read(Directory directory,
SegmentInfo segmentInfo,
java.lang.String segmentSuffix,
IOContext iocontext)
|
Modifier and Type | Method and Description |
---|---|
abstract StoredFieldsReader |
StoredFieldsFormat.fieldsReader(Directory directory,
SegmentInfo si,
FieldInfos fn,
IOContext context)
Returns a
StoredFieldsReader to load stored
fields. |
abstract void |
StoredFieldsWriter.finish(FieldInfos fis,
int numDocs)
Called before
StoredFieldsWriter.close() , passing in the number
of documents that were written. |
abstract void |
TermVectorsWriter.finish(FieldInfos fis,
int numDocs)
Called before
TermVectorsWriter.close() , passing in the number
of documents that were written. |
abstract TermVectorsReader |
TermVectorsFormat.vectorsReader(Directory directory,
SegmentInfo segmentInfo,
FieldInfos fieldInfos,
IOContext context)
Returns a
TermVectorsReader to read term
vectors. |
abstract void |
FieldInfosFormat.write(Directory directory,
SegmentInfo segmentInfo,
java.lang.String segmentSuffix,
FieldInfos infos,
IOContext context)
Writes the provided
FieldInfos to the
directory. |
Modifier and Type | Field and Description |
---|---|
(package private) FieldInfos |
BlockTreeTermsWriter.fieldInfos |
Modifier and Type | Field and Description |
---|---|
private FieldInfos |
CompressingStoredFieldsReader.fieldInfos |
private FieldInfos |
CompressingTermVectorsReader.fieldInfos |
Modifier and Type | Method and Description |
---|---|
StoredFieldsReader |
CompressingStoredFieldsFormat.fieldsReader(Directory directory,
SegmentInfo si,
FieldInfos fn,
IOContext context) |
void |
CompressingStoredFieldsWriter.finish(FieldInfos fis,
int numDocs) |
void |
CompressingTermVectorsWriter.finish(FieldInfos fis,
int numDocs) |
TermVectorsReader |
CompressingTermVectorsFormat.vectorsReader(Directory directory,
SegmentInfo segmentInfo,
FieldInfos fieldInfos,
IOContext context) |
Constructor and Description |
---|
CompressingStoredFieldsReader(Directory d,
SegmentInfo si,
java.lang.String segmentSuffix,
FieldInfos fn,
IOContext context,
java.lang.String formatName,
CompressionMode compressionMode)
Sole constructor.
|
CompressingTermVectorsReader(Directory d,
SegmentInfo si,
java.lang.String segmentSuffix,
FieldInfos fn,
IOContext context,
java.lang.String formatName,
CompressionMode compressionMode)
Sole constructor.
|
Modifier and Type | Field and Description |
---|---|
(package private) FieldInfos |
VersionBlockTreeTermsWriter.fieldInfos |
Modifier and Type | Method and Description |
---|---|
FieldInfos |
Lucene50FieldInfosFormat.read(Directory directory,
SegmentInfo segmentInfo,
java.lang.String segmentSuffix,
IOContext context) |
Modifier and Type | Method and Description |
---|---|
StoredFieldsReader |
Lucene50StoredFieldsFormat.fieldsReader(Directory directory,
SegmentInfo si,
FieldInfos fn,
IOContext context) |
void |
Lucene50FieldInfosFormat.write(Directory directory,
SegmentInfo segmentInfo,
java.lang.String segmentSuffix,
FieldInfos infos,
IOContext context) |
Modifier and Type | Method and Description |
---|---|
private void |
Lucene53NormsProducer.readFields(IndexInput meta,
FieldInfos infos) |
Modifier and Type | Method and Description |
---|---|
private int |
Lucene54DocValuesProducer.readFields(IndexInput meta,
FieldInfos infos) |
Modifier and Type | Method and Description |
---|---|
FieldInfos |
Lucene60FieldInfosFormat.read(Directory directory,
SegmentInfo segmentInfo,
java.lang.String segmentSuffix,
IOContext context) |
Modifier and Type | Method and Description |
---|---|
void |
Lucene60FieldInfosFormat.write(Directory directory,
SegmentInfo segmentInfo,
java.lang.String segmentSuffix,
FieldInfos infos,
IOContext context) |
Modifier and Type | Field and Description |
---|---|
(package private) FieldInfos |
SegmentCoreReaders.coreFieldInfos
fieldinfos for this core: means gen=-1.
|
(package private) FieldInfos |
DocumentsWriterPerThread.FlushedSegment.fieldInfos |
FieldInfos[] |
MergeState.fieldInfos
FieldInfos being merged
|
private FieldInfos |
ParallelLeafReader.fieldInfos |
FieldInfos |
SegmentReadState.fieldInfos
FieldInfos describing all fields in this
segment. |
(package private) FieldInfos |
SegmentReader.fieldInfos |
FieldInfos |
SegmentWriteState.fieldInfos
FieldInfos describing all fields in this
segment. |
private FieldInfos |
SortingLeafReader.SortingFields.infos |
FieldInfos |
MergeState.mergeFieldInfos
FieldInfos of the newly merged segment. |
Modifier and Type | Method and Description |
---|---|
(package private) FieldInfos |
FieldInfos.Builder.finish() |
FieldInfos |
FilterCodecReader.getFieldInfos() |
FieldInfos |
FilterLeafReader.getFieldInfos() |
abstract FieldInfos |
LeafReader.getFieldInfos()
Get the
FieldInfos describing all fields in
this reader. |
FieldInfos |
ParallelLeafReader.getFieldInfos()
Get the
FieldInfos describing all fields in
this reader. |
FieldInfos |
SegmentReader.getFieldInfos() |
FieldInfos |
MergeReaderWrapper.getFieldInfos() |
FieldInfos |
SlowCompositeReaderWrapper.getFieldInfos()
Deprecated.
|
static FieldInfos |
MultiFields.getMergedFieldInfos(IndexReader reader)
Call this to get the (merged) FieldInfos for a
composite reader.
|
private FieldInfos |
SegmentReader.initFieldInfos()
init most recent FieldInfos for the current commit
|
(package private) static FieldInfos |
IndexWriter.readFieldInfos(SegmentCommitInfo si) |
Modifier and Type | Method and Description |
---|---|
void |
FieldInfos.Builder.add(FieldInfos other) |
private static CheckIndex.Status.TermIndexStatus |
CheckIndex.checkFields(Fields fields,
Bits liveDocs,
int maxDoc,
FieldInfos fieldInfos,
boolean doPrint,
boolean isVectors,
java.io.PrintStream infoStream,
boolean verbose)
checks Fields api is consistent with itself.
|
(package private) DocValuesProducer |
SegmentDocValues.getDocValuesProducer(long gen,
SegmentCommitInfo si,
Directory dir,
FieldInfos infos)
Returns the
DocValuesProducer for the given generation. |
private void |
ReadersAndUpdates.handleBinaryDVUpdates(FieldInfos infos,
java.util.Map<java.lang.String,BinaryDocValuesFieldUpdates> updates,
TrackingDirectoryWrapper dir,
DocValuesFormat dvFormat,
SegmentReader reader,
java.util.Map<java.lang.Integer,java.util.Set<java.lang.String>> fieldFiles) |
private void |
ReadersAndUpdates.handleNumericDVUpdates(FieldInfos infos,
java.util.Map<java.lang.String,NumericDocValuesFieldUpdates> updates,
Directory dir,
DocValuesFormat dvFormat,
SegmentReader reader,
java.util.Map<java.lang.Integer,java.util.Set<java.lang.String>> fieldFiles) |
private RefCount<DocValuesProducer> |
SegmentDocValues.newDocValuesProducer(SegmentCommitInfo si,
Directory dir,
java.lang.Long gen,
FieldInfos infos) |
private java.util.Set<java.lang.String> |
ReadersAndUpdates.writeFieldInfosGen(FieldInfos fieldInfos,
Directory dir,
DocValuesFormat dvFormat,
FieldInfosFormat infosFormat) |
Constructor and Description |
---|
FlushedSegment(SegmentCommitInfo segmentInfo,
FieldInfos fieldInfos,
BufferedUpdates segmentUpdates,
MutableBits liveDocs,
int delCount) |
SegmentDocValuesProducer(SegmentCommitInfo si,
Directory dir,
FieldInfos coreInfos,
FieldInfos allInfos,
SegmentDocValues segDocValues)
Creates a new producer that handles updated docvalues fields
|
SegmentReadState(Directory dir,
SegmentInfo info,
FieldInfos fieldInfos,
IOContext context)
Create a
SegmentReadState . |
SegmentReadState(Directory dir,
SegmentInfo info,
FieldInfos fieldInfos,
IOContext context,
java.lang.String segmentSuffix)
Create a
SegmentReadState . |
SegmentWriteState(InfoStream infoStream,
Directory directory,
SegmentInfo segmentInfo,
FieldInfos fieldInfos,
BufferedUpdates segUpdates,
IOContext context)
Sole constructor.
|
SegmentWriteState(InfoStream infoStream,
Directory directory,
SegmentInfo segmentInfo,
FieldInfos fieldInfos,
BufferedUpdates segUpdates,
IOContext context,
java.lang.String segmentSuffix)
Constructor which takes segment suffix.
|
SortingFields(Fields in,
FieldInfos infos,
Sorter.DocMap docMap) |
Modifier and Type | Method and Description |
---|---|
FieldInfos |
MemoryIndex.MemoryIndexReader.getFieldInfos() |
Modifier and Type | Field and Description |
---|---|
private FieldInfos |
TermVectorLeafReader.fieldInfos |
Modifier and Type | Method and Description |
---|---|
FieldInfos |
TermVectorLeafReader.getFieldInfos() |
FieldInfos |
WeightedSpanTermExtractor.DelegatingLeafReader.getFieldInfos() |
Modifier and Type | Field and Description |
---|---|
(package private) FieldInfos |
UninvertingReader.fieldInfos
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
FieldInfos |
UninvertingReader.getFieldInfos()
Deprecated.
|