Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for postTags (0.04 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

                final String[] preTags = highlightInfo.getPreTags();
                final String[] postTags = highlightInfo.getPostTags();
                if (preTags != null) {
                    highlightBuilder.preTags(preTags);
                }
                if (postTags != null) {
                    highlightBuilder.postTags(postTags);
                }
                queryFieldConfig.highlightedFields(
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 138.6K bytes
    - Click Count (1)
  2. src/main/java/org/codelibs/fess/chat/ChatClient.java

                        .numOfFragments(Integer.parseInt(fessConfig.getOrDefault("rag.chat.highlight.number.of.fragments", "3")))
                        .preTags(StringUtil.EMPTY)
                        .postTags(StringUtil.EMPTY);
            }
    
            @Override
            public String getSort() {
                return null;
            }
    
            @Override
            public int getStartPosition() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 56.6K bytes
    - Click Count (0)
Back to Top