Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for isRateLimitEnabled (0.29 seconds)

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

            }
        }
    
        /**
         * Check if rate limiting is enabled.
         * @return true if rate limiting is enabled
         */
        public boolean isEnabled() {
            return ComponentUtil.getFessConfig().isRateLimitEnabled();
        }
    
        /**
         * Get the client IP address from the request, considering proxy headers.
         * Only trusts X-Forwarded-For/X-Real-IP headers when the request comes from a trusted proxy.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Dec 24 14:16:27 GMT 2025
    - 9.4K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * The value is, e.g. false <br>
         * comment: Whether rate limiting is enabled.
         * @return The determination, true or false. (if not found, exception but basically no way)
         */
        boolean isRateLimitEnabled();
    
        /**
         * Get the value for the key 'rate.limit.requests.per.window'. <br>
         * The value is, e.g. 100 <br>
         * comment: Maximum number of requests allowed per window.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 576.9K bytes
    - Click Count (2)
Back to Top