mirror of https://github.com/apache/lucene.git
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:
parent
e869b1fbf7
commit
89a694fc31
|
@ -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
|
||||
|
|
|
@ -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
|
||||
----------------------
|
||||
|
|
Loading…
Reference in New Issue