-
Notifications
You must be signed in to change notification settings - Fork 676
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e2a0402
commit 9ffa6ec
Showing
3 changed files
with
152 additions
and
0 deletions.
There are no files selected for viewing
51 changes: 51 additions & 0 deletions
51
solr/core/src/java/org/apache/solr/search/similarities/RawTFSimilarityFactory.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
/* | ||
* 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. | ||
*/ | ||
package org.apache.solr.search.similarities; | ||
|
||
import org.apache.lucene.search.similarities.RawTFSimilarity; | ||
import org.apache.lucene.search.similarities.Similarity; | ||
import org.apache.solr.common.params.SolrParams; | ||
import org.apache.solr.schema.SimilarityFactory; | ||
|
||
/** | ||
* Factory for RawTFSimilarity. | ||
* | ||
* <p>Parameters: | ||
* | ||
* <ul> | ||
* <li>discountOverlaps (bool): True if overlap tokens (tokens with a position of increment of | ||
* zero) are discounted from the document's length. The default is <code>true</code> | ||
* </ul> | ||
* | ||
* @lucene.experimental | ||
* @since 9.8.0 | ||
*/ | ||
public class RawTFSimilarityFactory extends SimilarityFactory { | ||
private RawTFSimilarity similarity; | ||
|
||
@Override | ||
public void init(SolrParams params) { | ||
super.init(params); | ||
boolean discountOverlaps = params.getBool("discountOverlaps", true); | ||
similarity = new RawTFSimilarity(discountOverlaps); | ||
} | ||
|
||
@Override | ||
public Similarity getSimilarity() { | ||
return similarity; | ||
} | ||
} |
51 changes: 51 additions & 0 deletions
51
solr/core/src/test-files/solr/collection1/conf/schema-rawtf.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
<?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 RawTFSimilarityFactory --> | ||
|
||
<schema name="test" version="1.7"> | ||
<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.RawTFSimilarityFactory"/> | ||
</fieldType> | ||
|
||
<!-- with parameters --> | ||
<fieldType name="text_params_0" class="solr.TextField"> | ||
<analyzer class="org.apache.lucene.analysis.standard.StandardAnalyzer"/> | ||
<similarity class="solr.RawTFSimilarityFactory"> | ||
<bool name="discountOverlaps">false</bool> | ||
</similarity> | ||
</fieldType> | ||
<fieldType name="text_params_1" class="solr.TextField"> | ||
<analyzer class="org.apache.lucene.analysis.standard.StandardAnalyzer"/> | ||
<similarity class="solr.RawTFSimilarityFactory"> | ||
<bool name="discountOverlaps">true</bool> | ||
</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_0" type="text_params_0" indexed="true" stored="false"/> | ||
<field name="text_params_1" type="text_params_1" indexed="true" stored="false"/> | ||
|
||
<uniqueKey>id</uniqueKey> | ||
|
||
</schema> |
50 changes: 50 additions & 0 deletions
50
solr/core/src/test/org/apache/solr/search/similarities/TestRawTFSimilarityFactory.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
/* | ||
* 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. | ||
*/ | ||
package org.apache.solr.search.similarities; | ||
|
||
import org.apache.lucene.search.similarities.RawTFSimilarity; | ||
import org.apache.lucene.search.similarities.Similarity; | ||
import org.junit.BeforeClass; | ||
|
||
/** Tests {@link RawTFSimilarityFactory} */ | ||
public class TestRawTFSimilarityFactory extends BaseSimilarityTestCase { | ||
@BeforeClass | ||
public static void beforeClass() throws Exception { | ||
initCore("solrconfig-basic.xml", "schema-rawtf.xml"); | ||
} | ||
|
||
public void test() { | ||
Similarity sim = getSimilarity("text"); | ||
assertEquals(RawTFSimilarity.class, sim.getClass()); | ||
RawTFSimilarity rtfSim = (RawTFSimilarity) sim; | ||
assertTrue(rtfSim.getDiscountOverlaps()); | ||
} | ||
|
||
public void testParameters0() { | ||
Similarity sim = getSimilarity("text_params_0"); | ||
assertEquals(RawTFSimilarity.class, sim.getClass()); | ||
RawTFSimilarity rtfSim = (RawTFSimilarity) sim; | ||
assertFalse(rtfSim.getDiscountOverlaps()); | ||
} | ||
|
||
public void testParameters1() { | ||
Similarity sim = getSimilarity("text_params_1"); | ||
assertEquals(RawTFSimilarity.class, sim.getClass()); | ||
RawTFSimilarity rtfSim = (RawTFSimilarity) sim; | ||
assertTrue(rtfSim.getDiscountOverlaps()); | ||
} | ||
} |