Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for addProcessingTime (0.06 seconds)

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

                docList.addContentSize(contentSize);
                final long processingTime = systemHelper.getCurrentTimeAsLong() - startTime;
                docList.addProcessingTime(processingTime);
                if (logger.isDebugEnabled()) {
                    logger.debug("Added document (size={}, time={}ms). Document cache count: {}",
    Created: 2025-12-20 09:19
    - Last Modified: 2025-11-28 16:29
    - 10.5K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

                        docList.addContentSize(contentSize);
                        final long processingTime = systemHelper.getCurrentTimeAsLong() - startTime;
                        docList.addProcessingTime(processingTime);
                        if (logger.isDebugEnabled()) {
                            logger.debug("Added the document({}, {}ms). The number of a document cache is {} (size: {}).",
    Created: 2025-12-20 09:19
    - Last Modified: 2025-11-28 16:29
    - 32.9K bytes
    - Click Count (0)
Back to Top