Re: Legacy filter strategy in Lucene 6.0

2018-08-08 Thread Adrien Grand
Hi Alex, These strategies still exist internally, but BooleanQuery decides which one to use automatically based on the cost API (cheaper clauses run first) and whether sub clauses produce bitset-based or postings-based iterators. Le mer. 8 août 2018 à 09:46, alex stark a écrit : > As FilteredQu

Legacy filter strategy in Lucene 6.0

2018-08-08 Thread alex stark
As FilteredQuery are removed in Lucene 6.0, we should use boolean query to do the filtering. How about the legacy filter strategy such as LEAP_FROG_FILTER_FIRST_STRATEGY or QUERY_FIRST_FILTER_STRATEGY? What is the current filter strategy?  Thanks,