mikemccand commented on issue #7350:
URL: https://github.com/apache/lucene/issues/7350#issuecomment-1700812722

   `FieldCache` is indeed long gone from Lucene -- I'm not sure how we missed 
adding this to `MIGRATE.txt`.
   
   For efficient range filtering, it is usually best now to index your numeric 
field as both points and doc values, and then use `IndexOrDocValuesQuery` at 
search time to express the range filter.  This way Lucene can optimize the 
query, for each segment, to pick the best execution strategy by choosing to use 
the inverted index (dimensional points), or a "post filter" / forward index 
(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: issues-unsubscr...@lucene.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org
For additional commands, e-mail: issues-h...@lucene.apache.org

Reply via email to