Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 36 of 36 for batchInsert (0.53 sec)

  1. src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsWebConfigBhv.java

            return doQueryDelete(createCB(cbLambda), null);
        }
    
        public int[] batchInsert(List<WebConfig> list) {
            return batchInsert(list, null, null);
        }
    
        public int[] batchInsert(List<WebConfig> list, RequestOptionCall<BulkRequestBuilder> call) {
            return batchInsert(list, call, null);
        }
    
        public int[] batchInsert(List<WebConfig> list, RequestOptionCall<BulkRequestBuilder> call,
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/service/ElevateWordService.java

                        mapping.setElevateWordId(elevateWordId);
                        mapping.setLabelTypeId(id);
                        wctltmList.add(mapping);
                    }
                    elevateWordToLabelBhv.batchInsert(wctltmList, op -> {
                        op.setRefreshPolicy(Constants.TRUE);
                    });
                } else {
                    final List<ElevateWordToLabel> list = elevateWordToLabelBhv.selectList(wctltmCb -> {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 18.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/SearchLogHelper.java

                    insertList.forEach(this::writeSearchLogEvent);
                    updateList.forEach(this::writeSearchLogEvent);
                }
                // insert/update user info
                userInfoBhv.batchInsert(insertList);
                userInfoBhv.batchUpdate(updateList);
                // update search log
                searchLogList.stream().forEach(searchLog -> {
                    searchLog.getUserInfo().ifPresent(userInfo -> {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 26.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java

                deleteTempFile(tempFile);
            }
            configParser.getWebConfig().ifPresent(c -> webConfigBhv.insert(c));
            configParser.getFileConfig().ifPresent(c -> fileConfigBhv.insert(c));
            labelTypeBhv.batchInsert(Arrays.stream(configParser.getLabelTypes()).collect(Collectors.toList()));
        }
    
        private void importSystemProperties(final String fileName, final File tempFile) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 29.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/service/CrawlingInfoService.java

                if (crawlingInfoParam.getCreatedTime() == null) {
                    crawlingInfoParam.setCreatedTime(now);
                }
            }
            crawlingInfoParamBhv.batchInsert(crawlingInfoParamList, op -> op.setRefreshPolicy(Constants.TRUE));
        }
    
        /**
         * Retrieves all parameters associated with a specific crawling information record.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java

                logger.debug("Storing {} thumbnail tasks.", list.size());
            }
            final ThumbnailQueueBhv thumbnailQueueBhv = ComponentUtil.getComponent(ThumbnailQueueBhv.class);
            thumbnailQueueBhv.batchInsert(list);
        }
    
        /**
         * Generates thumbnails using the provided executor service.
         *
         * @param executorService the executor service for parallel processing
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 26.9K bytes
    - Viewed (0)
Back to top