| Package | Description |
|---|---|
| org.apache.lucene.codecs |
Codecs API: API for customization of the encoding and structure of the index.
|
| org.apache.lucene.codecs.bloom |
Codec PostingsFormat for fast access to low-frequency terms such as primary key fields.
|
| org.apache.lucene.codecs.lucene40 |
Lucene 4.0 file format.
|
| org.apache.lucene.codecs.memory |
Postings format that is read entirely into memory.
|
| org.apache.lucene.codecs.perfield |
Postings format that can delegate to different formats per-field.
|
| org.apache.lucene.codecs.pulsing |
Pulsing Codec: inlines low frequency terms' postings into terms dictionary.
|
| org.apache.lucene.codecs.sep |
Sep: base support for separate files (doc,frq,pos,skp,pyl)
|
| org.apache.lucene.codecs.simpletext |
Simpletext Codec: writes human readable postings.
|
| org.apache.lucene.index |
Code to maintain and access indices.
|
| Modifier and Type | Method and Description |
|---|---|
abstract PerDocProducer |
DocValuesFormat.docsProducer(SegmentReadState state)
Produces (reads) doc values during reading/searching.
|
abstract PerDocProducer |
NormsFormat.docsProducer(SegmentReadState state)
Returns a
PerDocProducer to read norms from the
index. |
abstract FieldsProducer |
PostingsFormat.fieldsProducer(SegmentReadState state)
Reads a segment.
|
abstract PostingsReaderBase |
PostingsBaseFormat.postingsReaderBase(SegmentReadState state) |
| Modifier and Type | Method and Description |
|---|---|
FieldsProducer |
BloomFilteringPostingsFormat.fieldsProducer(SegmentReadState state) |
| Constructor and Description |
|---|
BloomFilteringPostingsFormat.BloomFilteredFieldsProducer(SegmentReadState state) |
| Modifier and Type | Method and Description |
|---|---|
PerDocProducer |
Lucene40DocValuesFormat.docsProducer(SegmentReadState state) |
PerDocProducer |
Lucene40NormsFormat.docsProducer(SegmentReadState state) |
FieldsProducer |
Lucene40PostingsFormat.fieldsProducer(SegmentReadState state) |
PostingsReaderBase |
Lucene40PostingsBaseFormat.postingsReaderBase(SegmentReadState state) |
| Constructor and Description |
|---|
Lucene40DocValuesProducer(SegmentReadState state,
String segmentSuffix)
Creates a new
Lucene40DocValuesProducer instance and loads all
DocValues instances for this segment and codec. |
Lucene40NormsFormat.Lucene40NormsDocValuesProducer(SegmentReadState state,
String segmentSuffix) |
| Modifier and Type | Method and Description |
|---|---|
FieldsProducer |
MemoryPostingsFormat.fieldsProducer(SegmentReadState state) |
FieldsProducer |
DirectPostingsFormat.fieldsProducer(SegmentReadState state) |
| Modifier and Type | Method and Description |
|---|---|
FieldsProducer |
PerFieldPostingsFormat.fieldsProducer(SegmentReadState state) |
| Modifier and Type | Method and Description |
|---|---|
FieldsProducer |
PulsingPostingsFormat.fieldsProducer(SegmentReadState state) |
| Constructor and Description |
|---|
SepDocValuesProducer(SegmentReadState state)
Creates a new
SepDocValuesProducer instance and loads all
DocValues instances for this segment and codec. |
| Modifier and Type | Method and Description |
|---|---|
PerDocProducer |
SimpleTextDocValuesFormat.docsProducer(SegmentReadState state) |
PerDocProducer |
SimpleTextNormsFormat.docsProducer(SegmentReadState state) |
FieldsProducer |
SimpleTextPostingsFormat.fieldsProducer(SegmentReadState state) |
| Constructor and Description |
|---|
SimpleTextNormsFormat.SimpleTextNormsPerDocProducer(SegmentReadState state,
Comparator<BytesRef> comp) |
SimpleTextPerDocProducer(SegmentReadState state,
Comparator<BytesRef> comp,
String segmentSuffix)
Creates a new
SimpleTextPerDocProducer instance and loads all
DocValues instances for this segment and codec. |
| Constructor and Description |
|---|
SegmentReadState(SegmentReadState other,
String newSegmentSuffix) |
Copyright © 2000-2012 Apache Software Foundation. All Rights Reserved.