Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for insertAll (0.04 seconds)

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

  1. fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/OpenSearchUrlFilterService.java

                esUrlFilter.setSessionId(sessionId);
                esUrlFilter.setFilterType(INCLUDE);
                esUrlFilter.setUrl(url);
                urlFilterList.add(esUrlFilter);
            }
            insertAll(urlFilterList, OpType.INDEX);
            includeFilterCache.invalidate(sessionId);
        }
    
        /**
         * Adds an exclude URL filter for the specified session.
         *
         * @param sessionId The session ID.
    Created: Sun Apr 12 03:50:13 GMT 2026
    - Last Modified: Thu Nov 20 08:40:57 GMT 2025
    - 9K bytes
    - Click Count (0)
  2. fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/AbstractCrawlerService.java

         * @param opType The operation type (CREATE, INDEX, etc.).
         * @throws OpenSearchAccessException if the bulk insertion fails.
         */
        protected <T> void insertAll(final List<T> list, final OpType opType) {
            insertAll(list, opType, false);
        }
    
        /**
         * Inserts multiple documents into the OpenSearch index using bulk operations.
         *
         * @param <T> The type of objects to insert.
    Created: Sun Apr 12 03:50:13 GMT 2026
    - Last Modified: Thu Nov 20 08:40:57 GMT 2025
    - 34.3K bytes
    - Click Count (0)
  3. fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/OpenSearchDataService.java

         *
         * @param accessResultList The list of access results to update.
         */
        @Override
        public void update(final List<OpenSearchAccessResult> accessResultList) {
            insertAll(accessResultList, OpType.INDEX);
        }
    
        /**
         * Gets the count of access results for a specific session.
         *
         * @param sessionId The session ID.
    Created: Sun Apr 12 03:50:13 GMT 2026
    - Last Modified: Mon Nov 24 03:59:47 GMT 2025
    - 11.1K bytes
    - Click Count (0)
Back to Top