Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for getDocumentSize (0.14 sec)

  1. src/main/java/org/codelibs/fess/ds/callback/IndexUpdateCallback.java

    import java.util.Map;
    
    import org.codelibs.fess.entity.DataStoreParams;
    
    public interface IndexUpdateCallback {
    
        void store(DataStoreParams paramMap, Map<String, Object> dataMap);
    
        long getDocumentSize();
    
        long getExecuteTime();
    
        void commit();
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 924 bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java

            if (logger.isDebugEnabled()) {
                logger.debug("Deleted {}", deleteUrlList);
            }
            deleteUrlList.clear();
        }
    
        @Override
        public long getDocumentSize() {
            return indexUpdateCallback.getDocumentSize();
        }
    
        @Override
        public long getExecuteTime() {
            return indexUpdateCallback.getExecuteTime();
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImpl.java

            doc.put(favoriteCountField, count);
            if (logger.isDebugEnabled()) {
                logger.debug("Favorite Count: {}, url: {}", count, url);
            }
        }
    
        @Override
        public long getDocumentSize() {
            return documentSize.get();
        }
    
        @Override
        public long getExecuteTime() {
            return executeTime;
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/DataIndexHelper.java

            crawlingInfoHelper.putToInfoMap(Constants.DATA_INDEX_EXEC_TIME, Long.toString(indexUpdateCallback.getExecuteTime()));
            crawlingInfoHelper.putToInfoMap(Constants.DATA_INDEX_SIZE, Long.toString(indexUpdateCallback.getDocumentSize()));
    
            for (final String sid : sessionIdList) {
                // remove config
                ComponentUtil.getCrawlingConfigHelper().remove(sid);
            }
    
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java

            crawlingInfoHelper.putToInfoMap(Constants.WEB_FS_INDEX_EXEC_TIME, Long.toString(indexUpdater.getExecuteTime()));
            crawlingInfoHelper.putToInfoMap(Constants.WEB_FS_INDEX_SIZE, Long.toString(indexUpdater.getDocumentSize()));
    
            if (systemHelper.isForceStop()) {
                return;
            }
    
            for (final String sid : sessionIdList) {
                // remove config
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

            this.sessionIdList = sessionIdList;
        }
    
        public void setFinishCrawling(final boolean finishCrawling) {
            this.finishCrawling = finishCrawling;
        }
    
        public long getDocumentSize() {
            return documentSize;
        }
    
        @Override
        public void setUncaughtExceptionHandler(final UncaughtExceptionHandler eh) {
            super.setUncaughtExceptionHandler(eh);
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:20:39 UTC 2024
    - 24.2K bytes
    - Viewed (0)
Back to top