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, totalTermFreq
close, decRef, document, document, ensureOpen, equals, getReaderCacheHelper, getRefCount, getTermVector, hasDeletions, hashCode, incRef, leaves, maxDoc, numDeletedDocs, numDocs, registerParentReader, tryIncRef
protected 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
IndexReader
IndexReader.document(int)
. If you want to load a subset, use
DocumentStoredFieldVisitor
.document
in class IndexReader
IOException
public final Fields getTermVectors(int docID) throws IOException
IndexReader
getTermVectors
in class IndexReader
IOException
public final Terms terms(String field) throws IOException
LeafReader
Terms
index for this field, or null if it has none.terms
in class LeafReader
IOException
public final NumericDocValues getNumericDocValues(String field) throws IOException
LeafReader
NumericDocValues
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 LeafReader
IOException
public final BinaryDocValues getBinaryDocValues(String field) throws IOException
LeafReader
BinaryDocValues
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 LeafReader
IOException
public final SortedDocValues getSortedDocValues(String field) throws IOException
LeafReader
SortedDocValues
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 LeafReader
IOException
public final SortedNumericDocValues getSortedNumericDocValues(String field) throws IOException
LeafReader
SortedNumericDocValues
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 LeafReader
IOException
public final SortedSetDocValues getSortedSetDocValues(String field) throws IOException
LeafReader
SortedSetDocValues
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 LeafReader
IOException
public final NumericDocValues getNormValues(String field) throws IOException
LeafReader
NumericDocValues
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 LeafReader
IOException
public final PointValues getPointValues(String field) throws IOException
LeafReader
PointValues
used for numeric or
spatial searches for the given field, or null if there
are no point fields.getPointValues
in class LeafReader
IOException
protected void doClose() throws IOException
IndexReader
doClose
in class IndexReader
IOException
public long ramBytesUsed()
Accountable
ramBytesUsed
in interface Accountable
public Collection<Accountable> getChildResources()
Accountable
getChildResources
in interface Accountable
Accountables
public void checkIntegrity() throws IOException
LeafReader
Note 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 LeafReader
IOException
Copyright © 2000-2018 Apache Software Foundation. All Rights Reserved.