Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for rank_constant (0.06 sec)

  1. src/main/resources/fess_config.properties

    labels.facet_filetype_txt=filetype:txt\t\
    labels.facet_filetype_others=filetype:others\n\
    
    # ranking
    
    # Window size for rank fusion.
    rank.fusion.window_size=200
    # Rank constant for rank fusion.
    rank.fusion.rank_constant=20
    # Number of threads for rank fusion.
    rank.fusion.threads=-1
    # Score field for rank fusion.
    rank.fusion.score_field=rf_score
    
    # acl
    
    # Whether to get SMB roles from a file.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 14:45:37 UTC 2025
    - 54.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /**
         * Get the value for the key 'rank.fusion.rank_constant'. <br>
         * The value is, e.g. 20 <br>
         * comment: Rank constant for rank fusion.
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getRankFusionRankConstant();
    
        /**
         * Get the value for the key 'rank.fusion.rank_constant' as {@link Integer}. <br>
         * The value is, e.g. 20 <br>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 525.6K bytes
    - Viewed (1)
  3. src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java

            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            final int rankConstant = fessConfig.getRankFusionRankConstantAsInteger();
            final int size = windowSize / searchers.length;
            if (logger.isDebugEnabled()) {
                logger.debug("The searcher window size is {} and a rank constant is {}.", size, rankConstant);
            }
            final List<Future<SearchResult>> resultList = new ArrayList<>();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.8K bytes
    - Viewed (0)
Back to top