Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setResultDocIdsCacheSize (0.08 sec)

  1. src/test/java/org/codelibs/fess/helper/UserInfoHelperTest.java

            assertEquals(0, docIds.length);
        }
    
        public void test_setters() {
            UserInfoHelper userInfoHelper = new UserInfoHelper();
    
            userInfoHelper.setResultDocIdsCacheSize(50);
            userInfoHelper.setCookieName("testCookie");
            userInfoHelper.setCookieDomain("example.com");
            userInfoHelper.setCookieMaxAge(3600);
            userInfoHelper.setCookiePath("/test");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 13:41:04 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/UserInfoHelper.java

        }
    
        /**
         * Sets the maximum size of the result document IDs cache.
         *
         * @param resultDocIdsCacheSize the maximum number of entries in the cache
         */
        public void setResultDocIdsCacheSize(final int resultDocIdsCacheSize) {
            this.resultDocIdsCacheSize = resultDocIdsCacheSize;
        }
    
        /**
         * Sets the name of the user identification cookie.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 14.9K bytes
    - Viewed (0)
Back to top