SOLR-2888: merge CHANGES from backport

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1232290 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Robert Muir 2012-01-17 04:02:17 +00:00
parent e869b1fbf7
commit 89a694fc31
2 changed files with 12 additions and 5 deletions

View File

@ -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

View File

@ -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
----------------------