OrdinalMap.getGlobalOrds currently returns LongValues, which was deprecated by the cutover to DV iterators (LongValues now extends LegacyNumericDocValues).
An iterator API makes no sense for global ords, which are inherently random-access since they are not based on docids. It seems like we should either: 1) create a new LongValues abstract class with essentially the old API: long get(int index) 2) create a LongValues interface that can be optionally implemented by classes wishing to expose a random access API -Yonik --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org For additional commands, e-mail: dev-h...@lucene.apache.org