packages-static: enable simple query parser
This commit is contained in:
parent
c112053767
commit
47f17055ec
1 changed files with 6 additions and 8 deletions
|
@ -368,11 +368,11 @@
|
|||
<query>
|
||||
|
||||
<!-- Maximum number of clauses allowed when parsing a boolean query string.
|
||||
|
||||
|
||||
This limit only impacts boolean queries specified by a user as part of a query string,
|
||||
and provides per-collection controls on how complex user specified boolean queries can
|
||||
be. Query strings that specify more clauses then this will result in an error.
|
||||
|
||||
|
||||
If this per-collection limit is greater then the global `maxBooleanClauses` limit
|
||||
specified in `solr.xml`, it will have no effect, as that setting also limits the size
|
||||
of user specified boolean queries.
|
||||
|
@ -382,7 +382,7 @@
|
|||
<!-- Solr Internal Query Caches
|
||||
|
||||
There are four implementations of cache available for Solr:
|
||||
LRUCache, based on a synchronized LinkedHashMap,
|
||||
LRUCache, based on a synchronized LinkedHashMap,
|
||||
LFUCache and FastLRUCache, based on a ConcurrentHashMap, and CaffeineCache -
|
||||
a modern and robust cache implementation. Note that in Solr 9.0
|
||||
only CaffeineCache will be available, other implementations are now
|
||||
|
@ -705,10 +705,10 @@
|
|||
<str name="spellcheck.dictionary">default</str>
|
||||
<str name="spellcheck.collate">true</str>
|
||||
<!-- Default search field
|
||||
<str name="df">name</str>
|
||||
<str name="df">name</str>
|
||||
-->
|
||||
<!-- Change from JSON to XML format (the default prior to Solr 7.0)
|
||||
<str name="wt">xml</str>
|
||||
<str name="wt">xml</str>
|
||||
-->
|
||||
</lst>
|
||||
<!-- In addition to defaults, "appends" params can be specified
|
||||
|
@ -1076,9 +1076,7 @@
|
|||
by SearchHandler) or in LocalParams
|
||||
-->
|
||||
<!-- example of registering a query parser -->
|
||||
<!--
|
||||
<queryParser name="myparser" class="com.mycompany.MyQParserPlugin"/>
|
||||
-->
|
||||
<queryParser name="simple" class="solr.search.SimpleQParserPlugin"/>
|
||||
|
||||
<!-- Function Parsers
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue