You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-commits@lucene.apache.org by us...@apache.org on 2010/05/30 13:12:44 UTC

svn commit: r949500 - /lucene/java/branches/lucene_3_0/CHANGES.txt

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)