You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by mi...@apache.org on 2014/01/29 17:23:22 UTC

svn commit: r1562498 - /lucene/dev/trunk/lucene/CHANGES.txt

Author: mikemccand
Date: Wed Jan 29 16:23:22 2014
New Revision: 1562498

URL: http://svn.apache.org/r1562498
Log:
LUCENE-3069: move CHANGES entries under 4.7

Modified:
    lucene/dev/trunk/lucene/CHANGES.txt

Modified: lucene/dev/trunk/lucene/CHANGES.txt
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/CHANGES.txt?rev=1562498&r1=1562497&r2=1562498&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/CHANGES.txt (original)
+++ lucene/dev/trunk/lucene/CHANGES.txt Wed Jan 29 16:23:22 2014
@@ -19,12 +19,6 @@ New Features
   responsible for iterating through all fields, terms, documents and
   positions.  (Robert Muir, Mike McCandless)
 
-* LUCENE-3069: Add two memory resident dictionaries (FST terms dictionary and 
-  FSTOrd terms dictionary) to improve primary key lookups. The PostingsBaseFormat 
-  API is also changed so that term dictionaries get the ability to block 
-  encode term metadata, and all dictionary implementations can now plug in any 
-  PostingsBaseFormat. (Han Jiang, Mike McCandless)
-
 * LUCENE-5268: Full cutover of all postings formats to the "pull"
   FieldsConsumer API, removing PushFieldsConsumer.  Added new
   PushPostingsWriterBase for single-pass push of docs/positions to the
@@ -119,6 +113,12 @@ New Features
 * LUCENE-5415: Add multitermquery (wildcards,prefix,etc) to PostingsHighlighter.
   (Mike McCandless, Robert Muir)
 
+* LUCENE-3069: Add two memory resident dictionaries (FST terms dictionary and 
+  FSTOrd terms dictionary) to improve primary key lookups. The PostingsBaseFormat 
+  API is also changed so that term dictionaries get the ability to block 
+  encode term metadata, and all dictionary implementations can now plug in any 
+  PostingsBaseFormat. (Han Jiang, Mike McCandless)
+
 Build
 
 * LUCENE-5217: Maven config: get dependencies from Ant+Ivy config; disable
@@ -229,6 +229,11 @@ API Changes
   only accepts a ValueSource instead of a convenience ctor for an expression
   string. (Simon Willnauer)
 
+* LUCENE-3069: PostingsWriterBase and PostingsReaderBase are no longer
+  responsible for encoding/decoding a block of terms.  Instead, they
+  should encode/decode each term to/from a long[] and byte[].  (Han
+  Jiang, Mike McCandless)
+
 Optimizations
 
 * LUCENE-5372: Replace StringBuffer by StringBuilder, where possible.