Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for min_doc_count (0.08 sec)

  1. src/main/resources/fess_config.properties

    query.prefix.slop=0
    query.fuzzy.prefix_length=0
    query.fuzzy.expansions=50
    query.fuzzy.transpositions=true
    
    # facet
    query.facet.fields=label
    query.facet.fields.size=100
    query.facet.fields.min_doc_count=1
    query.facet.fields.sort=count.desc
    query.facet.fields.missing=
    query.facet.queries=\
    labels.facet_timestamp_title:\
    labels.facet_timestamp_1day=timestamp:[now/d-1d TO *]\t\
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Tue Oct 01 14:13:38 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /**
         * Get the value for the key 'query.facet.fields.min_doc_count'. <br>
         * The value is, e.g. 1 <br>
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getQueryFacetFieldsMinDocCount();
    
        /**
         * Get the value for the key 'query.facet.fields.min_doc_count' as {@link Integer}. <br>
         * The value is, e.g. 1 <br>
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 468.5K bytes
    - Viewed (1)
  3. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

                    if (facetInfo.size != null) {
                        termsBuilder.size(facetInfo.size);
                    }
                    if (facetInfo.minDocCount != null) {
                        termsBuilder.minDocCount(facetInfo.minDocCount);
                    }
                    if (facetInfo.missing != null) {
                        termsBuilder.missing(facetInfo.missing);
                    }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sun Oct 20 02:08:03 UTC 2024
    - 86.1K bytes
    - Viewed (0)
Back to top