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.lucene40 |
Lucene 4.0 file format.
|
org.apache.lucene.codecs.lucene41 |
Lucene 4.1 file format.
|
org.apache.lucene.index |
Code to maintain and access indices.
|
org.apache.lucene.search |
Code to search indices.
|
org.apache.lucene.store |
Binary i/o API, used for all index data.
|
org.apache.lucene.util |
Some utility classes.
|
org.apache.lucene.util.fst |
Finite state transducers
|
org.apache.lucene.util.packed |
Packed integer arrays and streams.
|
Modifier and Type | Class and Description |
---|---|
class |
DocValuesProducer
Abstract API that produces numeric, binary and
sorted docvalues.
|
class |
FieldsProducer
Abstract API that produces terms, doc, freq, prox, offset and
payloads postings.
|
class |
PostingsReaderBase
The core terms dictionaries (BlockTermsReader,
BlockTreeTermsReader) interact with a single instance
of this class to manage creation of
DocsEnum and
DocsAndPositionsEnum instances. |
class |
StoredFieldsReader
Codec API for reading stored fields.
|
class |
TermVectorsReader
Codec API for reading term vectors:
|
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.
|
class |
FieldReader
BlockTree's implementation of
Terms . |
Modifier and Type | Class and Description |
---|---|
class |
CompressingStoredFieldsIndexReader
Random-access reader for
CompressingStoredFieldsIndexWriter . |
class |
CompressingStoredFieldsReader
|
class |
CompressingTermVectorsReader
|
Modifier and Type | Class and Description |
---|---|
class |
Lucene40PostingsReader
Deprecated.
Only for reading old 4.0 segments
|
class |
Lucene40StoredFieldsReader
Class responsible for access to stored document fields.
|
class |
Lucene40TermVectorsReader
Lucene 4.0 Term Vectors reader.
|
Modifier and Type | Class and Description |
---|---|
class |
Lucene41PostingsReader
Concrete class that reads docId(maybe frq,pos,offset,payloads) list
with postings format.
|
Modifier and Type | Class and Description |
---|---|
class |
DocTermOrds
This class enables fast access to multiple term ords for
a specified field across all docIDs.
|
class |
IndexWriter
An
IndexWriter creates and maintains an index. |
static class |
MultiDocValues.OrdinalMap
maps per-segment ordinals to/from global ordinal space
|
class |
SegmentReader
IndexReader implementation over a single segment.
|
Modifier and Type | Class and Description |
---|---|
class |
BitsFilteredDocIdSet
This implementation supplies a filtered DocIdSet, that excludes all
docids which are not in a Bits instance.
|
class |
CachingWrapperFilter
Wraps another
Filter 's result and caches it. |
class |
DocIdSet
A DocIdSet contains a set of doc ids.
|
static class |
FieldCache.CreationPlaceholder
Placeholder indicating creation of this cache is currently in-progress.
|
class |
FieldCacheDocIdSet
Base class for DocIdSet to be used with FieldCache.
|
class |
FilteredDocIdSet
Abstract decorator class for a DocIdSet implementation
that provides on-demand filtering/validation
mechanism on a given DocIdSet.
|
Constructor and Description |
---|
FieldCache.CacheEntry(Object readerKey,
String fieldName,
Class<?> cacheType,
Object custom,
Accountable value) |
Modifier and Type | Class and Description |
---|---|
class |
NRTCachingDirectory
Wraps a
RAMDirectory
around any provided delegate directory, to
be used during NRT search. |
class |
RAMDirectory
A memory-resident
Directory implementation. |
class |
RAMFile
Represents a file in RAM as a list of byte[] buffers.
|
class |
RAMOutputStream
A memory-resident
IndexOutput implementation. |
Modifier and Type | Class and Description |
---|---|
class |
DocIdBitSet
Simple DocIdSet and DocIdSetIterator backed by a BitSet
|
class |
FixedBitSet
BitSet of fixed length (numBits), backed by accessible (
FixedBitSet.getBits() )
long[], accessed with an int index, implementing Bits and
DocIdSet . |
class |
OpenBitSet
An "open" BitSet implementation that allows direct access to the array of words
storing the bits.
|
class |
OpenBitSetDISI
OpenBitSet with added methods to bulk-update the bits
from a
DocIdSetIterator . |
class |
PagedBytes
Represents a logical byte[] as a series of pages.
|
static class |
PagedBytes.Reader
Provides methods to read BytesRefs from a frozen
PagedBytes.
|
class |
PForDeltaDocIdSet
DocIdSet implementation based on pfor-delta encoding. |
class |
WAH8DocIdSet
DocIdSet implementation based on word-aligned hybrid encoding on
words of 8 bits. |
Modifier and Type | Method and Description |
---|---|
static long |
RamUsageEstimator.sizeOf(Accountable[] accountables)
Return the size of the provided array of
Accountable s by summing
up the shallow size of the array and the
memory usage reported by each
Accountable . |
Modifier and Type | Class and Description |
---|---|
class |
FST<T>
Represents an finite state machine (FST), using a
compact byte[] format.
|
Modifier and Type | Class and Description |
---|---|
class |
BlockPackedReader
Provides random access to a stream written with
BlockPackedWriter . |
class |
EliasFanoDocIdSet
A DocIdSet in Elias-Fano encoding.
|
class |
EliasFanoEncoder
Encode a non decreasing sequence of non negative whole numbers in the Elias-Fano encoding
that was introduced in the 1970's by Peter Elias and Robert Fano.
|
class |
GrowableWriter
Implements
PackedInts.Mutable , but grows the
bit count of the underlying packed ints on-demand. |
class |
MonotonicBlockPackedReader
Provides random access to a stream written with
MonotonicBlockPackedWriter . |
static class |
PackedInts.Mutable
A packed integer array that can be modified.
|
static class |
PackedInts.NullReader
A
PackedInts.Reader which has all its values equal to 0 (bitsPerValue = 0). |
static class |
PackedInts.Reader
A read-only random access array of positive integers.
|
class |
PackedLongValues
Utility class to compress integers into a
LongValues instance. |
static class |
PackedLongValues.Builder
A Builder for a
PackedLongValues instance. |
Copyright © 2000-2014 Apache Software Foundation. All Rights Reserved.