Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for prefixLength (0.11 sec)

  1. src/main/java/org/codelibs/fess/query/TermQueryCommand.java

                defaultQuery.add(QueryBuilders.fuzzyQuery(fessConfig.getIndexFieldTitle(), text)
                        .boost(fessConfig.getQueryBoostFuzzyTitleAsDecimal().floatValue())
                        .prefixLength(fessConfig.getQueryBoostFuzzyTitlePrefixLengthAsInteger())
                        .transpositions(Constants.TRUE.equalsIgnoreCase(fessConfig.getQueryBoostFuzzyTitleTranspositions()))
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 12 01:54:15 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. src/main/resources/fess_config.properties

    query.boost.fuzzy.title=0.01
    query.boost.fuzzy.title.fuzziness=AUTO
    query.boost.fuzzy.title.expansions=10
    query.boost.fuzzy.title.prefix_length=0
    query.boost.fuzzy.title.transpositions=true
    query.boost.fuzzy.content=0.005
    query.boost.fuzzy.content.fuzziness=AUTO
    query.boost.fuzzy.content.expansions=10
    query.boost.fuzzy.content.prefix_length=0
    query.boost.fuzzy.content.transpositions=true
    
    query.default.query_type=bool
    query.dismax.tie_breaker=0.1
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Tue Oct 01 14:13:38 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /**
         * Get the value for the key 'query.boost.fuzzy.title.prefix_length'. <br>
         * The value is, e.g. 0 <br>
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getQueryBoostFuzzyTitlePrefixLength();
    
        /**
         * Get the value for the key 'query.boost.fuzzy.title.prefix_length' as {@link Integer}. <br>
         * The value is, e.g. 0 <br>
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 468.5K bytes
    - Viewed (0)
Back to top