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 mi...@apache.org on 2007/07/04 18:59:19 UTC

svn commit: r553268 - /lucene/java/trunk/CHANGES.txt

Author: mikemccand
Date: Wed Jul  4 09:59:18 2007
New Revision: 553268

URL: http://svn.apache.org/viewvc?view=rev&rev=553268
Log:
LUCENE-843: woops ... move the CHANGES.txt entries into the right section (trunk)

Modified:
    lucene/java/trunk/CHANGES.txt

Modified: lucene/java/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/lucene/java/trunk/CHANGES.txt?view=diff&rev=553268&r1=553267&r2=553268
==============================================================================
--- lucene/java/trunk/CHANGES.txt (original)
+++ lucene/java/trunk/CHANGES.txt Wed Jul  4 09:59:18 2007
@@ -8,6 +8,13 @@
 
 API Changes
 
+ 1. LUCENE-843: Added IndexWriter.setRAMBufferSizeMB(...) to have
+    IndexWriter flush whenever the buffered documents are using more
+    than the specified amount of RAM.  Also added new APIs to Token
+    that allow one to set a char[] plus offset and length to specify a
+    token (to avoid creating a new String() for each Token).  (Mike
+    McCandless)
+ 
 Bug fixes
 
  1. LUCENE-933: QueryParser fixed to not produce empty sub 
@@ -26,6 +33,12 @@
     significantly, especially when the number of Tokens is large. 
     (Mark Miller via Michael Busch)
 
+ 2. LUCENE-843: Substantial optimizations to improve how IndexWriter
+    uses RAM for buffering documents and to speed up indexing (2X-8X
+    faster).  A single shared hash table now records the in-memory
+    postings per unique term and is directly flushed into a single
+    segment.  (Mike McCandless)
+ 
 Documentation
 
 Build
@@ -105,13 +118,6 @@
     to be public because it implements the public interface TermPositionVector.
     (Michael Busch)
 
-14. LUCENE-843: Added IndexWriter.setRAMBufferSizeMB(...) to have
-    IndexWriter flush whenever the buffered documents are using more
-    than the specified amount of RAM.  Also added new APIs to Token
-    that allow one to set a char[] plus offset and length to specify a
-    token (to avoid creating a new String() for each Token).  (Mike
-    McCandless)
- 
 Bug fixes
 
  1. LUCENE-804: Fixed build.xml to pack a fully compilable src dist.  (Doron Cohen)
@@ -275,12 +281,6 @@
     contain very frequent and very unique terms the speedup can be over 80%.
     (Michael Busch)
 
- 8. LUCENE-843: Substantial optimizations to improve how IndexWriter
-    uses RAM for buffering documents and to speed up indexing (2X-8X
-    faster).  A single shared hash table now records the in-memory
-    postings per unique term and is directly flushed into a single
-    segment.  (Mike McCandless)
- 
 Documentation
 
  1. LUCENE 791 && INFRA-1173: Infrastructure moved the Wiki to