LUCENE-3454: add CHANGES entry

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1201266 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael McCandless 2011-11-12 14:09:54 +00:00
parent 36bb0c83ec
commit c4be668e90
1 changed files with 9 additions and 0 deletions

View File

@ -721,6 +721,15 @@ Bug fixes
* LUCENE-3548: Fix CharsRef#append to extend length of the existing char[]
and presever existing chars. (Simon Willnauer)
API Changes
* LUCENE-3454: Rename IndexWriter.optimize to forceMerge to discourage
use of this method since it is horribly costly and rarely justified
anymore. MergePolicy.findMergesForOptimize was renamed to
findForcedMerges. IndexReader.isOptimized was
deprecated. IndexCommit.isOptimized was replaced with
getSegmentCount. (Robert Muir, Mike McCandless)
New Features
* LUCENE-3448: Added FixedBitSet.and(other/DISI), andNot(other/DISI).