Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for getIngestFactory (0.07 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/java/org/codelibs/fess/util/ComponentUtil.java

            return getComponent(LOG_NOTIFICATION_HELPER);
        }
    
        /**
         * Gets the ingest factory component.
         * @return The ingest factory.
         */
        public static IngestFactory getIngestFactory() {
            return getComponent(INGEST_FACTORY);
        }
    
        /**
         * Gets the script engine factory component.
         * @return The script engine factory.
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 30.9K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImpl.java

            maxDocumentCacheSize = ComponentUtil.getFessConfig().getIndexerDataMaxDocumentCacheSizeAsInteger();
            if (ComponentUtil.hasIngestFactory()) {
                ingestFactory = ComponentUtil.getIngestFactory();
            }
        }
    
        /**
         * Stores a document in the index after processing and validation.
         * Handles document transformation, field addition, and batched indexing.
         *
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 10.5K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

            if (logger.isDebugEnabled()) {
                logger.debug("Initializing {}", this.getClass().getSimpleName());
            }
            if (ComponentUtil.hasIngestFactory()) {
                ingestFactory = ComponentUtil.getIngestFactory();
            }
        }
    
        /**
         * Destroys the IndexUpdater when the container is shutting down.
         * Stops all crawler instances if crawling is still in progress.
         */
        @PreDestroy
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 32.9K bytes
    - Click Count (0)
Back to Top