You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by rm...@apache.org on 2012/01/17 05:02:17 UTC

svn commit: r1232290 - in /lucene/dev/trunk: lucene/contrib/CHANGES.txt solr/CHANGES.txt

Author: rmuir
Date: Tue Jan 17 04:02:17 2012
New Revision: 1232290

URL: http://svn.apache.org/viewvc?rev=1232290&view=rev
Log:
SOLR-2888: merge CHANGES from backport

Modified:
    lucene/dev/trunk/lucene/contrib/CHANGES.txt   (contents, props changed)
    lucene/dev/trunk/solr/CHANGES.txt   (contents, props changed)

Modified: lucene/dev/trunk/lucene/contrib/CHANGES.txt
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/contrib/CHANGES.txt?rev=1232290&r1=1232289&r2=1232290&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/contrib/CHANGES.txt (original)
+++ lucene/dev/trunk/lucene/contrib/CHANGES.txt Tue Jan 17 04:02:17 2012
@@ -154,6 +154,14 @@ Changes in runtime behavior
  * LUCENE-3626: PKIndexSplitter and MultiPassIndexSplitter now work
    per segment.  (Uwe Schindler)
 
+Optimizations
+
+* SOLR-2888: FSTSuggester refactoring: internal storage is now UTF-8, 
+  external sorting (on disk) prevents OOMs even with large data sets
+  (the bottleneck is now FST construction), code cleanups and API cleanups.
+  You should use FSTCompletionLookup (the old FSTLookup impl is deprecated).
+  (Dawid Weiss, Robert Muir)
+
 Bug Fixes
 
  * LUCENE-3600: BlockJoinQuery now supports parent docs that have no

Modified: lucene/dev/trunk/solr/CHANGES.txt
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/solr/CHANGES.txt?rev=1232290&r1=1232289&r2=1232290&view=diff
==============================================================================
--- lucene/dev/trunk/solr/CHANGES.txt (original)
+++ lucene/dev/trunk/solr/CHANGES.txt Tue Jan 17 04:02:17 2012
@@ -202,11 +202,6 @@ New Features
 Optimizations
 ----------------------
 
-* SOLR-2888: FSTSuggester refactoring: internal storage is now UTF-8, 
-  external sorting (on disk) prevents OOMs even with large data sets
-  (the bottleneck is now FST construction), code cleanups and API cleanups.
-  (Dawid Weiss, Robert Muir)
-
 * SOLR-1875: Per-segment field faceting for single valued string fields.
   Enable with facet.method=fcs, control the number of threads used with
   the "threads" local param on the facet.field param.  This algorithm will
@@ -452,6 +447,10 @@ Optimizations
 * SOLR-3012: Move System.getProperty("type") in postData() to main() and add type argument so that
   the client applications of SimplePostTool can set content type via method argument. (koji)
 
+* SOLR-2888: FSTSuggester refactoring: internal storage is now UTF-8, 
+  external sorting (on disk) prevents OOMs even with large data sets
+  (the bottleneck is now FST construction), code cleanups and API cleanups.
+  (Dawid Weiss, Robert Muir)
 
 Bug Fixes
 ----------------------