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.lucene80 for an overview
of the index format. |
org.apache.lucene.codecs.lucene70 |
Components from the Lucene 7.0 index format.
|
org.apache.lucene.codecs.lucene80 |
Lucene 8.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 |
Code to search indices.
|
Modifier and Type | Method and Description |
---|---|
abstract ImpactsEnum |
PostingsReaderBase.impacts(FieldInfo fieldInfo,
BlockTermState state,
int flags)
Return a
ImpactsEnum that computes impacts with scorer . |
Modifier and Type | Method and Description |
---|---|
ImpactsEnum |
SegmentTermsEnum.impacts(int flags) |
ImpactsEnum |
IntersectTermsEnum.impacts(int flags) |
Modifier and Type | Method and Description |
---|---|
ImpactsEnum |
CompressingTermVectorsReader.TVTermsEnum.impacts(int flags) |
Modifier and Type | Method and Description |
---|---|
ImpactsEnum |
IDVersionPostingsReader.impacts(FieldInfo fieldInfo,
BlockTermState state,
int flags) |
ImpactsEnum |
IDVersionSegmentTermsEnum.impacts(int flags) |
Modifier and Type | Class and Description |
---|---|
(package private) class |
Lucene50PostingsReader.BlockImpactsEverythingEnum |
Modifier and Type | Method and Description |
---|---|
ImpactsEnum |
Lucene50PostingsReader.impacts(FieldInfo fieldInfo,
BlockTermState state,
int flags) |
Modifier and Type | Method and Description |
---|---|
ImpactsEnum |
Lucene70DocValuesProducer.TermsDict.impacts(int flags) |
Modifier and Type | Method and Description |
---|---|
ImpactsEnum |
Lucene80DocValuesProducer.TermsDict.impacts(int flags) |
Modifier and Type | Class and Description |
---|---|
class |
SlowImpactsEnum
ImpactsEnum that doesn't index impacts but implements the API in a
legal way. |
Modifier and Type | Method and Description |
---|---|
ImpactsEnum |
FilterLeafReader.FilterTermsEnum.impacts(int flags) |
ImpactsEnum |
FreqProxFields.FreqProxTermsEnum.impacts(int flags) |
abstract ImpactsEnum |
TermsEnum.impacts(int flags)
Return a
ImpactsEnum . |
ImpactsEnum |
SortedSetDocValuesTermsEnum.impacts(int flags) |
ImpactsEnum |
SortedDocValuesTermsEnum.impacts(int flags) |
ImpactsEnum |
MultiTermsEnum.impacts(int flags) |
ImpactsEnum |
FilteredTermsEnum.impacts(int flags) |
Modifier and Type | Method and Description |
---|---|
ImpactsEnum |
MemoryIndex.MemoryIndexReader.MemoryTermsEnum.impacts(int flags) |
Modifier and Type | Field and Description |
---|---|
private ImpactsEnum |
TermScorer.impactsEnum |
Modifier and Type | Method and Description |
---|---|
ImpactsEnum |
FuzzyTermsEnum.impacts(int flags) |
Modifier and Type | Method and Description |
---|---|
(package private) static ImpactsSource |
SynonymQuery.mergeImpacts(ImpactsEnum[] impactsEnums,
float[] boosts)
Merge impacts for multiple synonyms.
|
Constructor and Description |
---|
TermScorer(Weight weight,
ImpactsEnum impactsEnum,
LeafSimScorer docScorer)
Construct a
TermScorer that will use impacts to skip blocks of
non-competitive documents. |