mkhludnev commented on issue #7350: URL: https://github.com/apache/lucene/issues/7350#issuecomment-1698682533
Hi, @PenghaiZhang Using FieldCache is obviously discouraged in favor of DocValues (and/or Points???). You can start from https://lucene.apache.org/core/9_5_0/core/org/apache/lucene/document/SortedNumericDocValuesField.html#newSlowRangeQuery(java.lang.String,long,long) check the proper field type class for your case. Note that factory method creates https://github.com/apache/lucene/blob/main/lucene/core/src/java/org/apache/lucene/document/SortedNumericDocValuesRangeQuery.java#L36 you can also find another dv types as well. -- 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]
