Return-Path: Delivered-To: apmail-lucene-java-commits-archive@www.apache.org Received: (qmail 10306 invoked from network); 30 May 2010 11:13:09 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 30 May 2010 11:13:09 -0000 Received: (qmail 54526 invoked by uid 500); 30 May 2010 11:13:09 -0000 Delivered-To: apmail-lucene-java-commits-archive@lucene.apache.org Received: (qmail 54392 invoked by uid 500); 30 May 2010 11:13:06 -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 54385 invoked by uid 99); 30 May 2010 11:13:05 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 30 May 2010 11:13:05 +0000 X-ASF-Spam-Status: No, hits=-1357.0 required=10.0 tests=ALL_TRUSTED,AWL 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; Sun, 30 May 2010 11:13:04 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 6B07E2388903; Sun, 30 May 2010 11:12:44 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r949500 - /lucene/java/branches/lucene_3_0/CHANGES.txt Date: Sun, 30 May 2010 11:12:44 -0000 To: java-commits@lucene.apache.org From: uschindler@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100530111244.6B07E2388903@eris.apache.org> Author: uschindler Date: Sun May 30 11:12:44 2010 New Revision: 949500 URL: http://svn.apache.org/viewvc?rev=949500&view=rev Log: Synchronize changes in 2.9 and 3.0 branch to share same order an format Modified: lucene/java/branches/lucene_3_0/CHANGES.txt Modified: lucene/java/branches/lucene_3_0/CHANGES.txt URL: http://svn.apache.org/viewvc/lucene/java/branches/lucene_3_0/CHANGES.txt?rev=949500&r1=949499&r2=949500&view=diff ============================================================================== --- lucene/java/branches/lucene_3_0/CHANGES.txt (original) +++ lucene/java/branches/lucene_3_0/CHANGES.txt Sun May 30 11:12:44 2010 @@ -5,20 +5,20 @@ $Id$ Bug fixes - * LUCENE-2422: Don't reuse byte[] in IndexInput/Output -- it gains - little performance, and ties up possibly large amounts of memory - for apps that index large docs. (Ross Woolf via Mike McCandless) - - * LUCENE-2387: Don't hang onto Fieldables from the last doc indexed, - in IndexWriter, nor the Reader in Tokenizer after close is - called. (Ruben Laguna, Uwe Schindler, Mike McCandless) +* LUCENE-2422: Don't reuse byte[] in IndexInput/Output -- it gains + little performance, and ties up possibly large amounts of memory + for apps that index large docs. (Ross Woolf via Mike McCandless) + +* LUCENE-2387: Don't hang onto Fieldables from the last doc indexed, + in IndexWriter, nor the Reader in Tokenizer after close is + called. (Ruben Laguna, Uwe Schindler, Mike McCandless) * LUCENE-2283: Use shared memory pool for term vector and stored fields buffers. This memory will be reclaimed if needed according to the configured RAM Buffer Size for the IndexWriter. This also fixes potentially excessive memory usage when many threads are indexing a mix of small and large documents. (Tim Smith via Mike McCandless) - + * LUCENE-2467: Fixed memory leaks in IndexWriter when large documents are indexed. (Mike McCandless)