prudhvigodithi commented on issue #14850: URL: https://github.com/apache/lucene/issues/14850#issuecomment-3608904511
I have tried a solution https://github.com/apache/lucene/pull/15446 with DocIdSet caching to work with intra-segment > Reading this issue made me wonder if we could make points indexes better by indexing them by doc ID, ie. treating doc IDs like any other dimension. Then there should be a way to not construct a FixedBitSet(maxDoc) up-front but to walk the BKD tree as the DocIdSetIterator advances? This would be a cleaner solution for intra-segment where each partition only visits subtrees containing its doc range. -- 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]
