LUCENE-6570: Add a MIGRATE entry.

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1686440 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Adrien Grand 2015-06-19 15:57:21 +00:00
parent 8877c9f7b7
commit a101eb9c43
1 changed files with 22 additions and 0 deletions

View File

@ -18,3 +18,25 @@ their ValueSources in a "DefFunction" along with a ConstValueSource of "0.0".
FilteredQuery has been removed. Instead, you can construct a BooleanQuery with
one MUST clause for the query, and one FILTER clause for the filter.
## PhraseQuery and BooleanQuery made immutable (LUCENE-6531 LUCENE-6570)
PhraseQuery and BooleanQuery are now immutable and have a builder API to help
construct them. For instance a BooleanQuery that used to be constructed like
this:
BooleanQuery bq = new BooleanQuery();
bq.add(q1, Occur.SHOULD);
bq.add(q2, Occur.SHOULD);
bq.add(q3, Occur.MUST);
bq.setMinimumNumberShouldMatch(1);
can now be constructed this way using its builder:
BooleanQuery bq = new BooleanQuery.Builder()
.add(q1, Occur.SHOULD)
.add(q2, Occur.SHOULD)
.add(q3, Occur.SHOULD)
.setMinimumNumberShouldMatch(1)
.build();