Package | Description |
---|---|
org.apache.lucene.bkdtree |
This package contains a BKD spatial tree implementation for indexing lat/lon points and fast shape searching.
|
org.apache.lucene.codecs |
Codecs API: API for customization of the encoding and structure of the index.
|
org.apache.lucene.codecs.asserting |
Codec for testing that asserts various contracts of the codec apis.
|
org.apache.lucene.codecs.autoprefix |
An experimental postings format that automatically indexes appropriate
prefix terms for fast range and prefix queries.
|
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 Lucene50, except the terms dictionary also
supports ords, i.e.
|
org.apache.lucene.codecs.bloom |
Codec PostingsFormat for fast access to low-frequency terms
such as primary key 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.lucene40 |
Lucene 4.0 file format.
|
org.apache.lucene.codecs.lucene41 |
Lucene 4.1 file format.
|
org.apache.lucene.codecs.lucene410 |
Lucene 4.10 file format.
|
org.apache.lucene.codecs.lucene42 |
Lucene 4.2 file format.
|
org.apache.lucene.codecs.lucene45 |
Lucene 4.5 file format.
|
org.apache.lucene.codecs.lucene49 |
Lucene 4.9 file format.
|
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 |
Lucene 5.3 file format.
|
org.apache.lucene.codecs.memory |
Term dictionary, DocValues or Postings formats that are read
entirely into memory.
|
org.apache.lucene.codecs.mockrandom |
Frankenstein codec for testing that pieces together random components.
|
org.apache.lucene.codecs.perfield |
Postings format that can delegate to different formats per-field.
|
org.apache.lucene.codecs.ramonly |
Codec for testing that never writes to disk.
|
org.apache.lucene.codecs.simpletext |
Simpletext Codec: writes human readable postings.
|
org.apache.lucene.index |
Code to maintain and access indices.
|
org.apache.lucene.rangetree |
This package contains a numeric tree implementation for indexing long values enabling fast range searching.
|
org.apache.lucene.search.suggest.document |
Support for document suggestion
|
Modifier and Type | Method and Description |
---|---|
DocValuesConsumer |
BKDTreeDocValuesFormat.fieldsConsumer(SegmentWriteState state) |
Modifier and Type | Method and Description |
---|---|
abstract FieldsConsumer |
PostingsFormat.fieldsConsumer(SegmentWriteState state)
Writes a new segment
|
abstract DocValuesConsumer |
DocValuesFormat.fieldsConsumer(SegmentWriteState state)
Returns a
DocValuesConsumer to write docvalues to the
index. |
abstract void |
PostingsWriterBase.init(IndexOutput termsOut,
SegmentWriteState state)
Called once after startup, before any terms have been
added.
|
abstract NormsConsumer |
NormsFormat.normsConsumer(SegmentWriteState state)
Returns a
NormsConsumer to write norms to the
index. |
Modifier and Type | Method and Description |
---|---|
DocValuesConsumer |
AssertingDocValuesFormat.fieldsConsumer(SegmentWriteState state) |
FieldsConsumer |
AssertingPostingsFormat.fieldsConsumer(SegmentWriteState state) |
NormsConsumer |
AssertingNormsFormat.normsConsumer(SegmentWriteState state) |
Modifier and Type | Method and Description |
---|---|
FieldsConsumer |
AutoPrefixPostingsFormat.fieldsConsumer(SegmentWriteState state) |
Modifier and Type | Method and Description |
---|---|
FieldsConsumer |
LuceneVarGapFixedInterval.fieldsConsumer(SegmentWriteState state) |
FieldsConsumer |
LuceneVarGapDocFreqInterval.fieldsConsumer(SegmentWriteState state) |
FieldsConsumer |
LuceneFixedGap.fieldsConsumer(SegmentWriteState state) |
Constructor and Description |
---|
BlockTermsWriter(TermsIndexWriterBase termsIndexWriter,
SegmentWriteState state,
PostingsWriterBase postingsWriter) |
FixedGapTermsIndexWriter(SegmentWriteState state) |
FixedGapTermsIndexWriter(SegmentWriteState state,
int termIndexInterval) |
VariableGapTermsIndexWriter(SegmentWriteState state,
VariableGapTermsIndexWriter.IndexTermSelector policy) |
Constructor and Description |
---|
BlockTreeTermsWriter(SegmentWriteState state,
PostingsWriterBase postingsWriter,
int minItemsInBlock,
int maxItemsInBlock)
Create a new writer, using default values for auto-prefix terms.
|
BlockTreeTermsWriter(SegmentWriteState state,
PostingsWriterBase postingsWriter,
int minItemsInBlock,
int maxItemsInBlock,
int minItemsInAutoPrefix,
int maxItemsInAutoPrefix)
Create a new writer.
|
Modifier and Type | Method and Description |
---|---|
FieldsConsumer |
BlockTreeOrdsPostingsFormat.fieldsConsumer(SegmentWriteState state) |
Constructor and Description |
---|
OrdsBlockTreeTermsWriter(SegmentWriteState state,
PostingsWriterBase postingsWriter,
int minItemsInBlock,
int maxItemsInBlock)
Create a new writer.
|
Modifier and Type | Method and Description |
---|---|
FieldsConsumer |
TestBloomFilteredLucenePostings.fieldsConsumer(SegmentWriteState state) |
FieldsConsumer |
BloomFilteringPostingsFormat.fieldsConsumer(SegmentWriteState state) |
abstract FuzzySet |
BloomFilterFactory.getSetForField(SegmentWriteState state,
FieldInfo info) |
FuzzySet |
DefaultBloomFilterFactory.getSetForField(SegmentWriteState state,
FieldInfo info) |
Modifier and Type | Method and Description |
---|---|
FieldsConsumer |
IDVersionPostingsFormat.fieldsConsumer(SegmentWriteState state) |
Constructor and Description |
---|
VersionBlockTreeTermsWriter(SegmentWriteState state,
PostingsWriterBase postingsWriter,
int minItemsInBlock,
int maxItemsInBlock)
Create a new writer.
|
Modifier and Type | Method and Description |
---|---|
DocValuesConsumer |
Lucene40DocValuesFormat.fieldsConsumer(SegmentWriteState state)
Deprecated.
|
FieldsConsumer |
Lucene40PostingsFormat.fieldsConsumer(SegmentWriteState state)
Deprecated.
|
NormsConsumer |
Lucene40NormsFormat.normsConsumer(SegmentWriteState state)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
FieldsConsumer |
Lucene41PostingsFormat.fieldsConsumer(SegmentWriteState state)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
DocValuesConsumer |
Lucene410DocValuesFormat.fieldsConsumer(SegmentWriteState state)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
DocValuesConsumer |
Lucene42DocValuesFormat.fieldsConsumer(SegmentWriteState state)
Deprecated.
|
NormsConsumer |
Lucene42NormsFormat.normsConsumer(SegmentWriteState state)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
DocValuesConsumer |
Lucene45DocValuesFormat.fieldsConsumer(SegmentWriteState state)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
DocValuesConsumer |
Lucene49DocValuesFormat.fieldsConsumer(SegmentWriteState state)
Deprecated.
|
NormsConsumer |
Lucene49NormsFormat.normsConsumer(SegmentWriteState state)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
DocValuesConsumer |
Lucene50DocValuesFormat.fieldsConsumer(SegmentWriteState state) |
FieldsConsumer |
Lucene50PostingsFormat.fieldsConsumer(SegmentWriteState state) |
void |
Lucene50PostingsWriter.init(IndexOutput termsOut,
SegmentWriteState state) |
Constructor and Description |
---|
Lucene50PostingsWriter(SegmentWriteState state)
Creates a postings writer
|
Modifier and Type | Method and Description |
---|---|
NormsConsumer |
Lucene53NormsFormat.normsConsumer(SegmentWriteState state) |
Modifier and Type | Method and Description |
---|---|
FieldsConsumer |
DirectPostingsFormat.fieldsConsumer(SegmentWriteState state) |
FieldsConsumer |
MemoryPostingsFormat.fieldsConsumer(SegmentWriteState state) |
DocValuesConsumer |
MemoryDocValuesFormat.fieldsConsumer(SegmentWriteState state) |
DocValuesConsumer |
DirectDocValuesFormat.fieldsConsumer(SegmentWriteState state) |
FieldsConsumer |
FSTOrdPostingsFormat.fieldsConsumer(SegmentWriteState state) |
FieldsConsumer |
FSTPostingsFormat.fieldsConsumer(SegmentWriteState state) |
Constructor and Description |
---|
FSTOrdTermsWriter(SegmentWriteState state,
PostingsWriterBase postingsWriter) |
FSTTermsWriter(SegmentWriteState state,
PostingsWriterBase postingsWriter) |
Modifier and Type | Method and Description |
---|---|
FieldsConsumer |
MockRandomPostingsFormat.fieldsConsumer(SegmentWriteState state) |
Modifier and Type | Method and Description |
---|---|
FieldsConsumer |
PerFieldPostingsFormat.fieldsConsumer(SegmentWriteState state) |
DocValuesConsumer |
PerFieldDocValuesFormat.fieldsConsumer(SegmentWriteState state) |
Modifier and Type | Method and Description |
---|---|
FieldsConsumer |
RAMOnlyPostingsFormat.fieldsConsumer(SegmentWriteState writeState) |
Modifier and Type | Method and Description |
---|---|
DocValuesConsumer |
SimpleTextDocValuesFormat.fieldsConsumer(SegmentWriteState state) |
FieldsConsumer |
SimpleTextPostingsFormat.fieldsConsumer(SegmentWriteState state) |
NormsConsumer |
SimpleTextNormsFormat.normsConsumer(SegmentWriteState state) |
Constructor and Description |
---|
SimpleTextNormsConsumer(SegmentWriteState state) |
Constructor and Description |
---|
SegmentWriteState(SegmentWriteState state,
String segmentSuffix)
Create a shallow copy of
SegmentWriteState with a new segment suffix. |
Modifier and Type | Method and Description |
---|---|
DocValuesConsumer |
RangeTreeDocValuesFormat.fieldsConsumer(SegmentWriteState state) |
Modifier and Type | Method and Description |
---|---|
FieldsConsumer |
CompletionPostingsFormat.fieldsConsumer(SegmentWriteState state) |
Copyright © 2000–2015 The Apache Software Foundation. All rights reserved.