Package | Description |
---|---|
org.apache.lucene.codecs |
Codecs for testing (simulate old disk formats, wacky theoretical use cases, etc)
|
org.apache.lucene.codecs.appending |
Codec for on append-only outputs, such as plain output streams and append-only filesystems.
|
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 Lucene41, except the terms dictionary also
supports ords, i.e.
|
org.apache.lucene.codecs.bloom |
Support for generating test indexes using the BloomFilteringPostingsFormat
|
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.lucene40 |
Support for testing
Lucene40PostingsFormat . |
org.apache.lucene.codecs.lucene41 |
Support for testing
Lucene41Codec . |
org.apache.lucene.codecs.lucene41ords |
Codec for testing that supports
TermsEnum.ord() |
org.apache.lucene.codecs.memory |
Term dictionary, DocValues or Postings formats that are read entirely into memory.
|
org.apache.lucene.codecs.mockintblock |
Integer encoder implementations for testing.
|
org.apache.lucene.codecs.mockrandom |
Frankenstein codec for testing that pieces together random components.
|
org.apache.lucene.codecs.mocksep |
Very simple implementations of
org.apache.lucene.codecs.sep for testing. |
org.apache.lucene.codecs.nestedpulsing |
Codec for testing that wraps
PulsingPostingsFormat with itself. |
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.ramonly |
Codec for testing that never writes to disk.
|
org.apache.lucene.codecs.simpletext |
Simpletext Codec: writes human readable postings.
|
Modifier and Type | Method and Description |
---|---|
abstract FieldsProducer |
PostingsFormat.fieldsProducer(SegmentReadState state)
Reads a segment.
|
Modifier and Type | Class and Description |
---|---|
class |
AppendingTermsReader
Deprecated.
Only for reading old Appending segments
|
Modifier and Type | Method and Description |
---|---|
FieldsProducer |
AssertingPostingsFormat.fieldsProducer(SegmentReadState state) |
Modifier and Type | Class and Description |
---|---|
class |
BlockTermsReader
Handles a terms dict, but decouples all details of
doc/freqs/positions reading to an instance of
PostingsReaderBase . |
Modifier and Type | Class and Description |
---|---|
class |
BlockTreeTermsReader
A block-based terms index and dictionary that assigns
terms to variable length blocks according to how they
share prefixes.
|
Modifier and Type | Class and Description |
---|---|
class |
OrdsBlockTreeTermsReader
|
Modifier and Type | Method and Description |
---|---|
FieldsProducer |
Ords41PostingsFormat.fieldsProducer(SegmentReadState state) |
Modifier and Type | Method and Description |
---|---|
FieldsProducer |
TestBloomFilteredLucene41Postings.fieldsProducer(SegmentReadState state) |
FieldsProducer |
BloomFilteringPostingsFormat.fieldsProducer(SegmentReadState state) |
Modifier and Type | Class and Description |
---|---|
class |
VersionBlockTreeTermsReader
|
Modifier and Type | Method and Description |
---|---|
FieldsProducer |
IDVersionPostingsFormat.fieldsProducer(SegmentReadState state) |
Modifier and Type | Method and Description |
---|---|
FieldsProducer |
Lucene40PostingsFormat.fieldsProducer(SegmentReadState state)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
FieldsProducer |
Lucene41PostingsFormat.fieldsProducer(SegmentReadState state) |
Modifier and Type | Method and Description |
---|---|
FieldsProducer |
Lucene41WithOrds.fieldsProducer(SegmentReadState state) |
Modifier and Type | Class and Description |
---|---|
class |
FSTOrdTermsReader
FST-based terms dictionary reader.
|
class |
FSTTermsReader
FST-based terms dictionary reader.
|
Modifier and Type | Method and Description |
---|---|
FieldsProducer |
FSTPulsing41PostingsFormat.fieldsProducer(SegmentReadState state) |
FieldsProducer |
FSTPostingsFormat.fieldsProducer(SegmentReadState state) |
FieldsProducer |
FSTOrdPostingsFormat.fieldsProducer(SegmentReadState state) |
FieldsProducer |
MemoryPostingsFormat.fieldsProducer(SegmentReadState state) |
FieldsProducer |
FSTOrdPulsing41PostingsFormat.fieldsProducer(SegmentReadState state) |
FieldsProducer |
DirectPostingsFormat.fieldsProducer(SegmentReadState state) |
Modifier and Type | Method and Description |
---|---|
FieldsProducer |
MockVariableIntBlockPostingsFormat.fieldsProducer(SegmentReadState state) |
FieldsProducer |
MockFixedIntBlockPostingsFormat.fieldsProducer(SegmentReadState state) |
Modifier and Type | Method and Description |
---|---|
FieldsProducer |
MockRandomPostingsFormat.fieldsProducer(SegmentReadState state) |
Modifier and Type | Method and Description |
---|---|
FieldsProducer |
MockSepPostingsFormat.fieldsProducer(SegmentReadState state) |
Modifier and Type | Method and Description |
---|---|
FieldsProducer |
NestedPulsingPostingsFormat.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) |
Modifier and Type | Method and Description |
---|---|
FieldsProducer |
RAMOnlyPostingsFormat.fieldsProducer(SegmentReadState readState) |
Modifier and Type | Method and Description |
---|---|
FieldsProducer |
SimpleTextPostingsFormat.fieldsProducer(SegmentReadState state) |
Copyright © 2000–2018 The Apache Software Foundation. All rights reserved.