Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for boostExpression (0.49 sec)

  1. src/main/java/org/codelibs/fess/indexer/DocBoostMatcher.java

    public class DocBoostMatcher {
    
        private String boostExpression = "0";
    
        private String matchExpression;
    
        private final String scriptType;
    
        public DocBoostMatcher() {
            scriptType = Constants.DEFAULT_SCRIPT;
        }
    
        public DocBoostMatcher(final BoostDocumentRule rule) {
            matchExpression = rule.getUrlExpr();
            boostExpression = rule.getBoostExpr();
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.8K bytes
    - Viewed (0)
  2. src/main/webapp/WEB-INF/env/crawler/resources/app.xml

    		<postConstruct name="addBoostDocumentRule">
    			<arg>
    				<component class="org.codelibs.fess.indexer.BoostDocumentRule">
    					<property name="matchExpression">"url.matches(\".*fess.*\")"</property>
    					<property name="boostExpression">"1000.0"</property>
    				</component>
    			</arg>
    		</postConstruct>
    		 -->
    	</component>
    	<component name="crawlerStatsHelper"
    		class="org.codelibs.fess.helper.CrawlerStatsHelper">
    	</component>
    XML
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Apr 09 02:14:47 GMT 2022
    - 1.8K bytes
    - Viewed (0)
Back to top