Package | Description |
---|---|
org.apache.lucene.codecs |
Codecs API: API for customization of the encoding and structure of the index.
|
org.apache.lucene.codecs.blocktreeords |
Same postings format as Lucene50, except the terms dictionary also
supports ords, i.e.
|
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.index |
Code to maintain and access indices.
|
org.apache.lucene.search |
Code to search indices.
|
Modifier and Type | Class and Description |
---|---|
class |
BlockTermState
Holds all state required for
PostingsReaderBase
to produce a PostingsEnum without re-seeking the
terms dict. |
Modifier and Type | Method and Description |
---|---|
void |
BlockTermState.copyFrom(TermState _other) |
Modifier and Type | Method and Description |
---|---|
TermState |
OrdsSegmentTermsEnum.termState() |
Modifier and Type | Method and Description |
---|---|
void |
OrdsSegmentTermsEnum.seekExact(BytesRef target,
TermState otherState) |
Modifier and Type | Method and Description |
---|---|
TermState |
IDVersionSegmentTermsEnum.termState() |
Modifier and Type | Method and Description |
---|---|
void |
IDVersionSegmentTermsEnum.seekExact(BytesRef target,
TermState otherState) |
Modifier and Type | Class and Description |
---|---|
class |
OrdTermState
An ordinal based
TermState |
Modifier and Type | Method and Description |
---|---|
TermState |
TermState.clone() |
TermState |
TermContext.get(int ord)
|
TermState |
FilteredTermsEnum.termState()
Returns the filtered enums term state
|
TermState |
TermsEnum.termState()
Expert: Returns the TermsEnums internal state to position the TermsEnum
without re-seeking the term dictionary.
|
Modifier and Type | Method and Description |
---|---|
void |
OrdTermState.copyFrom(TermState other) |
abstract void |
TermState.copyFrom(TermState other)
Copies the content of the given
TermState to this instance |
void |
TermContext.register(TermState state,
int ord)
Expert: Registers and associates a
TermState with an leaf ordinal. |
void |
TermContext.register(TermState state,
int ord,
int docFreq,
long totalTermFreq)
Registers and associates a
TermState with an leaf ordinal. |
void |
FilteredTermsEnum.seekExact(BytesRef term,
TermState state)
This enum does not support seeking!
|
void |
TermsEnum.seekExact(BytesRef term,
TermState state)
Expert: Seeks a specific position by
TermState previously obtained
from TermsEnum.termState() . |
Constructor and Description |
---|
TermContext(IndexReaderContext context,
TermState state,
int ord,
int docFreq,
long totalTermFreq)
|
Modifier and Type | Method and Description |
---|---|
TermState |
FuzzyTermsEnum.termState() |
Modifier and Type | Method and Description |
---|---|
void |
FuzzyTermsEnum.seekExact(BytesRef term,
TermState state) |
Copyright © 2000–2015 The Apache Software Foundation. All rights reserved.