Uses of Class
org.apache.lucene.index.CompositeReader
-
Packages that use CompositeReader Package Description org.apache.lucene.index Code to maintain and access indices. -
-
Uses of CompositeReader in org.apache.lucene.index
Subclasses of CompositeReader in org.apache.lucene.index Modifier and Type Class Description class
BaseCompositeReader<R extends IndexReader>
Base class for implementingCompositeReader
s based on an array of sub-readers.class
DirectoryReader
DirectoryReader is an implementation ofCompositeReader
that can read indexes in aDirectory
.class
ExitableDirectoryReader
TheExitableDirectoryReader
wraps a real indexDirectoryReader
and allows for aQueryTimeout
implementation object to be checked periodically to see if the thread should exit or not.class
FilterDirectoryReader
A FilterDirectoryReader wraps another DirectoryReader, allowing implementations to transform or extend it.class
MultiReader
ACompositeReader
which reads multiple indexes, appending their content.class
ParallelCompositeReader
AnCompositeReader
which reads multiple, parallel indexes.class
SoftDeletesDirectoryReaderWrapper
This reader filters out documents that have a doc values value in the given field and treat these documents as soft deleted.class
StandardDirectoryReader
Default implementation ofDirectoryReader
.Methods in org.apache.lucene.index that return CompositeReader Modifier and Type Method Description CompositeReader
CompositeReaderContext. reader()
Constructors in org.apache.lucene.index with parameters of type CompositeReader Constructor Description ParallelCompositeReader(boolean closeSubReaders, CompositeReader... readers)
Create a ParallelCompositeReader based on the provided readers.ParallelCompositeReader(boolean closeSubReaders, CompositeReader[] readers, CompositeReader[] storedFieldReaders)
Expert: create a ParallelCompositeReader based on the provided readers and storedFieldReaders; when a document is loaded, only storedFieldsReaders will be used.ParallelCompositeReader(CompositeReader... readers)
Create a ParallelCompositeReader based on the provided readers; auto-closes the given readers onIndexReader.close()
.
-