Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getHighlightPrefix (0.06 sec)

  1. src/main/java/org/codelibs/fess/rank/fusion/DefaultSearcher.java

                    builder.partialResults(true);
                }
    
                // build highlighting fields
                final String hlPrefix = ComponentUtil.getQueryHelper().getHighlightPrefix();
                for (final SearchHit searchHit : searchHits.getHits()) {
                    final Map<String, Object> docMap = parseSearchHit(fessConfig, hlPrefix, searchHit);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/QueryHelper.java

        }
    
        /**
         * Gets the current highlight prefix used for highlight field names.
         *
         * @return the current highlight prefix
         */
        public String getHighlightPrefix() {
            return highlightPrefix;
        }
    
        /**
         * Gets the default facet information configuration.
         *
         * @return the default facet information, or null if not configured
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.9K bytes
    - Viewed (0)
Back to top