Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for deleteSessionIdsBefore (0.14 sec)

  1. src/test/java/org/codelibs/fess/exec/CrawlerTest.java

                }
            };
            crawler.pathMappingService = pathMappingService;
    
            crawlingInfoService = new CrawlingInfoService() {
                @Override
                public void deleteSessionIdsBefore(String sessionId, String name, long currentTime) {
                    // Mock implementation
                }
            };
            crawler.crawlingInfoService = crawlingInfoService;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 30.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/exec/Crawler.java

                } catch (final Exception e) {
                    logger.warn("Could not initialize duplicateHostHelper.", e);
                }
    
                // delete expired sessions
                crawlingInfoService.deleteSessionIdsBefore(options.sessionId, options.name, systemHelper.getCurrentTimeAsLong());
    
                final List<String> webConfigIdList = options.getWebConfigIdList();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 31K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/service/CrawlingInfoService.java

         * @param name optional name filter for sessions to delete (can be null or blank)
         * @param date the expiration time threshold - sessions expired before this time will be deleted
         */
        public void deleteSessionIdsBefore(final String activeSessionId, final String name, final long date) {
            final List<CrawlingInfo> crawlingInfoList = crawlingInfoBhv.selectList(cb -> {
                cb.query().filtered((cq, cf) -> {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.9K bytes
    - Viewed (0)
Back to top