Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for minutter (0.03 seconds)

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

  1. src/main/java/org/codelibs/fess/helper/SearchLogHelper.java

        /**
         * Default constructor for SearchLogHelper.
         */
        public SearchLogHelper() {
            // Default constructor
        }
    
        /** Interval for checking user information in milliseconds (default: 10 minutes). */
        protected long userCheckInterval = 10 * 60 * 1000L; // 10 min
    
        /** Maximum size of the user information cache. */
        protected int userInfoCacheSize = 10000;
    
        /** Queue for storing search logs. */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 29.3K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/Constants.java

        /** Default cron expression for general scheduling (daily at midnight). */
        public static final String DEFAULT_CRON_EXPRESSION = "0 0 * * *";
    
        /** Default cron expression for search log processing (every minute). */
        public static final String DEFAULT_SEARCH_LOG_CRON_EXPRESSION = "* * * * *";
    
        /** Default cron expression for daily tasks (daily at midnight). */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:55:54 GMT 2026
    - 35.8K bytes
    - Click Count (0)
  3. src/main/resources/fess_config.properties

    # Whether RAG chat feature is enabled.
    rag.chat.enabled=false
    
    
    # Chat generation settings.
    rag.chat.context.max.documents=5
    
    # Session settings.
    rag.chat.session.timeout.minutes=30
    rag.chat.session.max.size=10000
    rag.chat.history.max.messages=30
    
    # Enhanced RAG flow settings.
    # Fields to retrieve for full document content.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 59.3K bytes
    - Click Count (0)
Back to Top