Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getSessionIdList (0.11 sec)

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

         *
         * @param searchEngineClient the search engine client to perform the query
         * @return a list of maps containing session IDs and their document counts
         */
        public List<Map<String, String>> getSessionIdList(final SearchEngineClient searchEngineClient) {
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            return searchEngineClient.search(fessConfig.getIndexDocumentSearchIndex(), queryRequestBuilder -> {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 15.2K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java

            // Test sessionIdList
            final List<String> sessionIdList = Arrays.asList("session1", "session2");
            indexUpdater.setSessionIdList(sessionIdList);
            assertEquals(sessionIdList, indexUpdater.getSessionIdList());
    
            // Test finishCrawling
            indexUpdater.setFinishCrawling(true);
            // finishCrawling should be set when max empty list count is exceeded
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 33K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

            return executeTime;
        }
    
        /**
         * Gets the list of crawler session IDs being processed.
         *
         * @return the list of session IDs
         */
        public List<String> getSessionIdList() {
            return sessionIdList;
        }
    
        /**
         * Sets the list of crawler session IDs to process.
         *
         * @param sessionIdList the list of session IDs to set
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 32.7K bytes
    - Viewed (0)
Back to top