Return-Path: Delivered-To: apmail-lucene-java-commits-archive@www.apache.org Received: (qmail 5630 invoked from network); 16 Nov 2009 13:35:44 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 16 Nov 2009 13:35:44 -0000 Received: (qmail 51253 invoked by uid 500); 16 Nov 2009 13:35:43 -0000 Delivered-To: apmail-lucene-java-commits-archive@lucene.apache.org Received: (qmail 51217 invoked by uid 500); 16 Nov 2009 13:35:43 -0000 Mailing-List: contact java-commits-help@lucene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: java-dev@lucene.apache.org Delivered-To: mailing list java-commits@lucene.apache.org Received: (qmail 51208 invoked by uid 99); 16 Nov 2009 13:35:43 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 16 Nov 2009 13:35:43 +0000 X-ASF-Spam-Status: No, hits=-2.6 required=5.0 tests=AWL,BAYES_00 X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 16 Nov 2009 13:35:41 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 5F67F23889D1; Mon, 16 Nov 2009 13:35:21 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r880744 - in /lucene/java/trunk: CHANGES.txt src/site/changes/changes2html.pl Date: Mon, 16 Nov 2009 13:35:21 -0000 To: java-commits@lucene.apache.org From: uschindler@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20091116133521.5F67F23889D1@eris.apache.org> Author: uschindler Date: Mon Nov 16 13:35:20 2009 New Revision: 880744 URL: http://svn.apache.org/viewvc?rev=880744&view=rev Log: Better changes.txt list. Modified: lucene/java/trunk/CHANGES.txt lucene/java/trunk/src/site/changes/changes2html.pl Modified: lucene/java/trunk/CHANGES.txt URL: http://svn.apache.org/viewvc/lucene/java/trunk/CHANGES.txt?rev=880744&r1=880743&r2=880744&view=diff ============================================================================== --- lucene/java/trunk/CHANGES.txt (original) +++ lucene/java/trunk/CHANGES.txt Mon Nov 16 13:35:20 2009 @@ -11,7 +11,8 @@ previously deprecated IndexCommitPoint is also removed. (Michael Busch) -* oal.Lock.isLocked is now allowed to throw an IOException +* o.a.l.Lock.isLocked() is now allowed to throw an IOException. + (Mike McCandless) * LUCENE-2030: CachingWrapperFilter and CachingSpanFilter now hide the internal cache implementation for thread safety, before it was @@ -60,12 +61,12 @@ fields when reading. You have to reindex to do that. (Michael Busch, Uwe Schindler) - * LUCENE-2060: Changed ConcurrentMergeScheduler's default for - maxNumThreads from 3 to 1, because in practice we get the most - gains from running a single merge in the background. More than one - concurrent merge causes a lot of thrashing (though it's possible on - SSD storage that there would be net gains). (Jason Rutherglen, - Mike McCandless) +* LUCENE-2060: Changed ConcurrentMergeScheduler's default for + maxNumThreads from 3 to 1, because in practice we get the most + gains from running a single merge in the background. More than one + concurrent merge causes a lot of thrashing (though it's possible on + SSD storage that there would be net gains). (Jason Rutherglen, + Mike McCandless) API Changes @@ -73,12 +74,13 @@ (Uwe Schindler, Robert Muir, Karl Wettin, Paul Elschot, Kay Kay, Shai Erera) * Generify Lucene API: + - TokenStream/AttributeSource: Now addAttribute()/getAttribute() return an instance of the requested attribute interface and no cast needed anymore. - NumericRangeQuery, NumericRangeFilter, and FieldCacheRangeFilter now have Integer, Long, Float, Double as type param. - Document.getFields() returns List - - Query.extractTerms(Set). + - Query.extractTerms(Set) - CharArraySet and stop word sets in core/contrib - PriorityQueue - TopDocCollector @@ -87,12 +89,14 @@ - MapOfSets - o.a.l.util.cache package - lot's of internal APIs of IndexWriter + (Uwe Schindler, Michael Busch, Kay Kay, Robert Muir, Adriano Crestani) * LUCENE-1944, LUCENE-1856, LUCENE-1957, LUCENE-1960, LUCENE-1961, LUCENE-1968, LUCENE-1970, LUCENE-1946, LUCENE-1971, LUCENE-1975, LUCENE-1972, LUCENE-1978, LUCENE-944, LUCENE-1979, LUCENE-1973, LUCENE-2011: Remove deprecated methods/constructors/classes: + - All String/File directory paths in IndexReader / IndexSearcher / IndexWriter. - Remove FSDirectory.getDirectory() @@ -117,6 +121,7 @@ - Remove BoostingTermQuery. - Remove MultiValueSource. - Remove Scorer.explain(int). + ...and some other minor ones (Uwe Schindler, Michael Busch, Mark Miller) * LUCENE-1925: Make IndexSearcher's subReaders and docStarts members Modified: lucene/java/trunk/src/site/changes/changes2html.pl URL: http://svn.apache.org/viewvc/lucene/java/trunk/src/site/changes/changes2html.pl?rev=880744&r1=880743&r2=880744&view=diff ============================================================================== --- lucene/java/trunk/src/site/changes/changes2html.pl (original) +++ lucene/java/trunk/src/site/changes/changes2html.pl Mon Nov 16 13:35:20 2009 @@ -614,7 +614,8 @@ '2.2.0' => '2007-06-19', '2.3.0' => '2008-01-21', '2.3.1' => '2008-02-22', '2.3.2' => '2008-05-05', '2.4.0' => '2008-10-06', '2.4.1' => '2009-03-09', - '2.9.0' => '2009-09-23'); + '2.9.0' => '2009-09-23', '2.9.1' => '2009-11-06', + '3.0.0' => '2009-11-25'); }