iverase commented on issue #14758: URL: https://github.com/apache/lucene/issues/14758#issuecomment-4259019384
I think most of the information is there, the only requirement is that the field needs to have doc values. you can access doc value information during flush using the method `IndexChain#getDocValuesLeafReader`, it will only be matter to provide the leafReader during flush. During merge you can always access the doc values from the old segments via the DocValuesConsumer abstract class. It contains static methods that provides a view of the doc values. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
