blob: 65ccd5e09657e2ce6f4c5fb4c5ae5c8961cf23fa [file] [log] [blame]
<?xml version="1.0" ?>
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<config>
<luceneMatchVersion>${tests.luceneMatchVersion:LATEST}</luceneMatchVersion>
<schemaFactory class="ClassicIndexSchemaFactory"/>
<xi:include href="solrconfig.snippet.randomindexconfig.xml" xmlns:xi="http://www.w3.org/2001/XInclude"/>
<searchComponent class="solr.PhrasesIdentificationComponent" name="phrases" />
<!-- our default search handler should suggest phrases in addition to doing queries if requested -->
<requestHandler name="/select" class="solr.SearchHandler">
<arr name="last-components">
<str>phrases</str>
</arr>
<lst name="defaults">
<str name="echoParams">explicit</str>
<str name="indent">true</str>
<str name="df">body</str>
<str name="phrases.fields">multigrams_body multigrams_title^2</str>
</lst>
</requestHandler>
<!-- a custom handler should support exclusively giving phrases w/o doing a query -->
<requestHandler name="/phrases" class="solr.SearchHandler">
<arr name="components">
<str>phrases</str>
</arr>
<lst name="defaults">
<str name="echoParams">explicit</str>
<str name="indent">true</str>
<bool name="phrases">true</bool>
<str name="phrases.fields">multigrams_body multigrams_title^2</str>
</lst>
</requestHandler>
</config>