- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for setSeacher (0.07 sec)
-
src/test/java/org/codelibs/fess/rank/fusion/RankFusionProcessorTest.java
String query = "*"; int allRecordCount = 1000; int pageSize = 10; try (RankFusionProcessor rankFusionProcessor = new RankFusionProcessor()) { rankFusionProcessor.setSeacher(new TestMainSearcher(allRecordCount)); rankFusionProcessor.init(); if (rankFusionProcessor.search(query, new TestSearchRequestParams(0, pageSize, 0),
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 25.6K bytes - Viewed (0) -
src/main/resources/fess_rankfusion.xml
"http://dbflute.org/meta/lastadi10.dtd"> <components> <component name="rankFusionProcessor" class="org.codelibs.fess.rank.fusion.RankFusionProcessor"> <postConstruct name="setSeacher"> <arg> <component class="org.codelibs.fess.rank.fusion.DefaultSearcher"> </component> </arg> </postConstruct> </component>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jun 17 02:41:59 UTC 2023 - 450 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java
* This method is used to configure the primary searcher for rank fusion processing. * * @param searcher the RankFusionSearcher to set as the main searcher */ public void setSeacher(final RankFusionSearcher searcher) { searchers[0] = searcher; } /** * Registers a new searcher with the rank fusion processor.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 24.8K bytes - Viewed (0)