/solr/core/src/test-files/solr/collection1/conf/schema-bm25.xml
http://github.com/apache/lucene-solr · XML · 63 lines · 32 code · 10 blank · 21 comment · 0 complexity · 43dd4ba6be220992780511576b2616a6 MD5 · raw file
- <?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.
- -->
- <!-- Test schema file for BM25SimilarityFactory -->
- <schema name="test" version="1.0">
- <fieldType name="string" class="solr.StrField" omitNorms="true" positionIncrementGap="0"/>
- <!-- default parameters -->
- <fieldType name="text" class="solr.TextField">
- <analyzer class="org.apache.lucene.analysis.standard.StandardAnalyzer"/>
- <similarity class="solr.BM25SimilarityFactory"/>
- </fieldType>
- <!-- with parameters -->
- <fieldType name="text_params" class="solr.TextField">
- <analyzer class="org.apache.lucene.analysis.standard.StandardAnalyzer"/>
- <similarity class="solr.BM25SimilarityFactory">
- <float name="k1">1.2</float>
- <float name="b">0.76</float>
- </similarity>
- </fieldType>
- <!-- legacybm25 with default parameters -->
- <fieldType name="legacy_text" class="solr.TextField">
- <analyzer class="org.apache.lucene.analysis.standard.StandardAnalyzer"/>
- <similarity class="solr.LegacyBM25SimilarityFactory"/>
- </fieldType>
- <!-- legacybm25 with parameters -->
- <fieldType name="legacy_text_params" class="solr.TextField">
- <analyzer class="org.apache.lucene.analysis.standard.StandardAnalyzer"/>
- <similarity class="solr.LegacyBM25SimilarityFactory">
- <float name="k1">1.2</float>
- <float name="b">0.76</float>
- </similarity>
- </fieldType>
-
- <field name="id" type="string" indexed="true" stored="true" multiValued="false" required="false"/>
- <field name="text" type="text" indexed="true" stored="false"/>
- <field name="text_params" type="text_params" indexed="true" stored="false"/>
- <field name="legacy_text" type="legacy_text" indexed="true" stored="false"/>
- <field name="legacy_text_params" type="legacy_text_params" indexed="true" stored="false"/>
- <uniqueKey>id</uniqueKey>
- </schema>