mirror of https://github.com/apache/lucene.git
SOLR-6679: comment out suggester in stock config due to long startup times
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1638010 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
6639fc546a
commit
6270a1fc13
|
@ -278,6 +278,10 @@ Bug Fixes
|
|||
* SOLR-6721: ZkController.ensureReplicaInLeaderInitiatedRecovery puts replica
|
||||
in local map before writing to ZK. (shalin)
|
||||
|
||||
* SOLR-6679: Remove suggester component from stock solrconfig.xml since
|
||||
it caused long startup times on lage indexes even when it wasn't used.
|
||||
(yonik)
|
||||
|
||||
Optimizations
|
||||
----------------------
|
||||
|
||||
|
|
|
@ -1441,11 +1441,12 @@
|
|||
</arr>
|
||||
</requestHandler>
|
||||
|
||||
<!-- This causes long startup times on big indexes, even when never used. See SOLR-6679
|
||||
<searchComponent name="suggest" class="solr.SuggestComponent">
|
||||
<lst name="suggester">
|
||||
<lst name="suggester">
|
||||
<str name="name">mySuggester</str>
|
||||
<str name="lookupImpl">FuzzyLookupFactory</str> <!-- org.apache.solr.spelling.suggest.fst -->
|
||||
<str name="dictionaryImpl">DocumentDictionaryFactory</str> <!-- org.apache.solr.spelling.suggest.HighFrequencyDictionaryFactory -->
|
||||
<str name="lookupImpl">FuzzyLookupFactory</str>
|
||||
<str name="dictionaryImpl">DocumentDictionaryFactory</str>
|
||||
<str name="field">cat</str>
|
||||
<str name="weightField">price</str>
|
||||
<str name="suggestAnalyzerFieldType">string</str>
|
||||
|
@ -1461,6 +1462,9 @@
|
|||
<str>suggest</str>
|
||||
</arr>
|
||||
</requestHandler>
|
||||
-->
|
||||
|
||||
|
||||
<!-- Term Vector Component
|
||||
|
||||
http://wiki.apache.org/solr/TermVectorComponent
|
||||
|
|
Loading…
Reference in New Issue