Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getQueryCountMap (0.91 sec)

  1. src/main/java/org/codelibs/fess/util/FacetResponse.java

            }
    
        }
    
        /**
         * Gets the map of query facet counts.
         *
         * @return the queryCountMap containing decoded query strings and their counts
         */
        public Map<String, Long> getQueryCountMap() {
            return queryCountMap;
        }
    
        /**
         * Gets the list of field facets.
         *
         * @return the fieldList containing all field facet information
         */
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sun Nov 23 11:39:05 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/api/ApiResult.java

                            return fieldMap;
                        }).collect(Collectors.toList());
                    }
                    // facet q
                    if (facetResponse.getQueryCountMap() != null) {
                        facetQuery = facetResponse.getQueryCountMap().entrySet().stream().map(e -> {
                            final Map<String, Object> valueCount = new HashMap<>(2, 1f);
                            valueCount.put("value", e.getKey());
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                    // facet q
                    buf.append(',');
                    buf.append("\"facet_query\":[");
                    if (facetResponse.getQueryCountMap() != null) {
                        boolean first1 = true;
                        for (final Map.Entry<String, Long> entry : facetResponse.getQueryCountMap().entrySet()) {
                            if (!first1) {
                                buf.append(',');
                            } else {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 55.4K bytes
    - Viewed (1)
Back to top