Interface LuceneIdReader
-
- All Known Subinterfaces:
LuceneIdReaderWriter
- All Known Implementing Classes:
LuceneLegacyIdReaderWriter,LuceneModernIdReaderWriter
public interface LuceneIdReader
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.apache.lucene.index.BinaryDocValuesidDocValues(org.apache.lucene.index.LeafReader reader)Creates aBinaryDocValuesbacked up by a specific field depending on a configured ID read/write strategy.
-
-
-
Method Detail
-
idDocValues
org.apache.lucene.index.BinaryDocValues idDocValues(org.apache.lucene.index.LeafReader reader) throws IOExceptionCreates aBinaryDocValuesbacked up by a specific field depending on a configured ID read/write strategy.- Parameters:
reader- The reader to retrieve IDs from.- Returns:
- Returns
BinaryDocValuesfor the ID field. - Throws:
IOException- On I/O error occurred while creating doc values.- See Also:
LuceneBackendSettings.SCHEMA_ID_STRATEGY
-
-