Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for maxDocumentCacheSize (0.09 sec)

  1. src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImplTest.java

        }
    
        public void test_init() {
            // Test initialization
            assertEquals(1048576L, indexUpdateCallback.maxDocumentRequestSize);
            assertEquals(10000, indexUpdateCallback.maxDocumentCacheSize);
        }
    
        public void test_store_withValidData() {
            // Prepare test data
            DataStoreParams paramMap = new DataStoreParams();
            Map<String, Object> dataMap = new HashMap<>();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 24.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImpl.java

        /** Maximum size of document requests in bytes */
        protected long maxDocumentRequestSize;
    
        /** Maximum number of documents to cache before indexing */
        protected int maxDocumentCacheSize;
    
        /** Factory for creating ingesters to process documents */
        private IngestFactory ingestFactory = null;
    
        /**
         * Initializes the callback implementation after dependency injection.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/env/crawler/resources/app.xml

    			<arg>3600000</arg>
    		</postConstruct>
    		 -->
    	</component>
    	<component name="indexUpdater" class="org.codelibs.fess.indexer.IndexUpdater"
    		instance="prototype">
    		<!--
    		<property name="maxDocumentCacheSize">5</property>
    		<property name="unprocessedDocumentSize">100</property>
    		<property name="threadDump">false</property>
    		<postConstruct name="addBoostDocumentRule">
    			<arg>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Nov 07 06:19:20 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

                    builder.setQuery(queryBuilder);
                    builder.setFrom(0);
                    final int maxDocumentCacheSize = fessConfig.getIndexerWebfsMaxDocumentCacheSizeAsInteger();
                    builder.setSize(maxDocumentCacheSize <= 0 ? 1 : maxDocumentCacheSize);
                    builder.addSort(OpenSearchAccessResult.CREATE_TIME, SortOrder.ASC);
                };
    
    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