public abstract class CodecReader extends LeafReader implements Accountable
IndexReader.CacheHelper, IndexReader.CacheKey, IndexReader.ClosedListener| Modifier | Constructor and Description |
|---|---|
protected |
CodecReader()
Sole constructor.
|
| Modifier and Type | Method and Description |
|---|---|
void |
checkIntegrity()
Checks consistency of this reader.
|
protected void |
doClose()
Implements close.
|
void |
document(int docID,
StoredFieldVisitor visitor)
Expert: visits the fields of a stored document, for
custom processing/loading of each field.
|
BinaryDocValues |
getBinaryDocValues(String field)
Returns
BinaryDocValues for this field, or
null if no binary doc values were indexed for
this field. |
Collection<Accountable> |
getChildResources()
Returns nested resources of this class.
|
abstract DocValuesProducer |
getDocValuesReader()
Expert: retrieve underlying DocValuesProducer
|
abstract StoredFieldsReader |
getFieldsReader()
Expert: retrieve thread-private StoredFieldsReader
|
abstract NormsProducer |
getNormsReader()
Expert: retrieve underlying NormsProducer
|
NumericDocValues |
getNormValues(String field)
Returns
NumericDocValues representing norms
for this field, or null if no NumericDocValues
were indexed. |
NumericDocValues |
getNumericDocValues(String field)
Returns
NumericDocValues for this field, or
null if no numeric doc values were indexed for
this field. |
abstract PointsReader |
getPointsReader()
Expert: retrieve underlying PointsReader
|
PointValues |
getPointValues(String field)
Returns the
PointValues used for numeric or
spatial searches for the given field, or null if there
are no point fields. |
abstract FieldsProducer |
getPostingsReader()
Expert: retrieve underlying FieldsProducer
|
SortedDocValues |
getSortedDocValues(String field)
Returns
SortedDocValues for this field, or
null if no SortedDocValues were indexed for
this field. |
SortedNumericDocValues |
getSortedNumericDocValues(String field)
Returns
SortedNumericDocValues for this field, or
null if no SortedNumericDocValues were indexed for
this field. |
SortedSetDocValues |
getSortedSetDocValues(String field)
Returns
SortedSetDocValues for this field, or
null if no SortedSetDocValues were indexed for
this field. |
Fields |
getTermVectors(int docID)
Retrieve term vectors for this document, or null if
term vectors were not indexed.
|
abstract TermVectorsReader |
getTermVectorsReader()
Expert: retrieve thread-private TermVectorsReader
|
long |
ramBytesUsed()
Return the memory usage of this object in bytes.
|
Terms |
terms(String field)
Returns the
Terms index for this field, or null if it has none. |
docFreq, getContext, getCoreCacheHelper, getDocCount, getFieldInfos, getLiveDocs, getMetaData, getSumDocFreq, getSumTotalTermFreq, postings, postings, totalTermFreqclose, decRef, document, document, ensureOpen, equals, getReaderCacheHelper, getRefCount, getTermVector, hasDeletions, hashCode, incRef, leaves, maxDoc, numDeletedDocs, numDocs, registerParentReader, tryIncRefprotected CodecReader()
public abstract StoredFieldsReader getFieldsReader()
public abstract TermVectorsReader getTermVectorsReader()
public abstract NormsProducer getNormsReader()
public abstract DocValuesProducer getDocValuesReader()
public abstract FieldsProducer getPostingsReader()
public abstract PointsReader getPointsReader()
public final void document(int docID,
StoredFieldVisitor visitor)
throws IOException
IndexReaderIndexReader.document(int). If you want to load a subset, use
DocumentStoredFieldVisitor.document in class IndexReaderIOExceptionpublic final Fields getTermVectors(int docID) throws IOException
IndexReadergetTermVectors in class IndexReaderIOExceptionpublic final Terms terms(String field) throws IOException
LeafReaderTerms index for this field, or null if it has none.terms in class LeafReaderIOExceptionpublic final NumericDocValues getNumericDocValues(String field) throws IOException
LeafReaderNumericDocValues for this field, or
null if no numeric doc values were indexed for
this field. The returned instance should only be
used by a single thread.getNumericDocValues in class LeafReaderIOExceptionpublic final BinaryDocValues getBinaryDocValues(String field) throws IOException
LeafReaderBinaryDocValues for this field, or
null if no binary doc values were indexed for
this field. The returned instance should only be
used by a single thread.getBinaryDocValues in class LeafReaderIOExceptionpublic final SortedDocValues getSortedDocValues(String field) throws IOException
LeafReaderSortedDocValues for this field, or
null if no SortedDocValues were indexed for
this field. The returned instance should only be
used by a single thread.getSortedDocValues in class LeafReaderIOExceptionpublic final SortedNumericDocValues getSortedNumericDocValues(String field) throws IOException
LeafReaderSortedNumericDocValues for this field, or
null if no SortedNumericDocValues were indexed for
this field. The returned instance should only be
used by a single thread.getSortedNumericDocValues in class LeafReaderIOExceptionpublic final SortedSetDocValues getSortedSetDocValues(String field) throws IOException
LeafReaderSortedSetDocValues for this field, or
null if no SortedSetDocValues were indexed for
this field. The returned instance should only be
used by a single thread.getSortedSetDocValues in class LeafReaderIOExceptionpublic final NumericDocValues getNormValues(String field) throws IOException
LeafReaderNumericDocValues representing norms
for this field, or null if no NumericDocValues
were indexed. The returned instance should only be
used by a single thread.getNormValues in class LeafReaderIOExceptionpublic final PointValues getPointValues(String field) throws IOException
LeafReaderPointValues used for numeric or
spatial searches for the given field, or null if there
are no point fields.getPointValues in class LeafReaderIOExceptionprotected void doClose()
throws IOException
IndexReaderdoClose in class IndexReaderIOExceptionpublic long ramBytesUsed()
AccountableramBytesUsed in interface Accountablepublic Collection<Accountable> getChildResources()
AccountablegetChildResources in interface AccountableAccountablespublic void checkIntegrity()
throws IOException
LeafReaderNote that this may be costly in terms of I/O, e.g. may involve computing a checksum value against large data files.
checkIntegrity in class LeafReaderIOExceptionCopyright © 2000-2018 Apache Software Foundation. All Rights Reserved.