OpenSearch/docs/reference/query-dsl
Adrien Grand d7abb12100 Replace deprecated filters with equivalent queries.
In Lucene 5.1 lots of filters got deprecated in favour of equivalent queries.
Additionally, random-access to filters is now replaced with approximations on
scorers. This commit
 - replaces the deprecated NumericRangeFilter, PrefixFilter, TermFilter and
   TermsFilter with NumericRangeQuery, PrefixQuery, TermQuery and TermsQuery,
   wrapped in a QueryWrapperFilter
 - replaces XBooleanFilter, AndFilter and OrFilter with a BooleanQuery in a
   QueryWrapperFilter
 - removes DocIdSets.isBroken: the new two-phase iteration API will now help
   execute slow filters efficiently
 - replaces FilterCachingPolicy with QueryCachingPolicy

Close #8960
2015-04-21 15:32:43 +02:00
..
filters Replace deprecated filters with equivalent queries. 2015-04-21 15:32:43 +02:00
queries Term Vectors: terms filtering 2015-04-14 19:11:09 +02:00
filters.asciidoc [Docs] Improve documentation of the new caching policy for filters. 2014-12-22 17:14:47 +01:00
queries.asciidoc Queries: Remove fuzzy-like-this support. 2015-04-10 17:16:02 +02:00