Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/main/java/org/codelibs/fess/es/config/bsbhv/BsRequestHeaderBhv.java

        }
    
        public int[] batchInsert(List<RequestHeader> list) {
            return batchInsert(list, null, null);
        }
    
        public int[] batchInsert(List<RequestHeader> list, RequestOptionCall<BulkRequestBuilder> call) {
            return batchInsert(list, call, null);
        }
    
        public int[] batchInsert(List<RequestHeader> list, RequestOptionCall<BulkRequestBuilder> call,
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.8K 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 Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/SearchLogHelper.java

                    entity.setCreatedAt(userInfo.getCreatedAt());
                    updateList.add(entity);
                    insertList.remove(entity);
                });
                userInfoBhv.batchInsert(insertList);
                userInfoBhv.batchUpdate(updateList);
                searchLogList.stream().forEach(searchLog -> {
                    searchLog.getUserInfo().ifPresent(userInfo -> {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Mon Jul 22 02:07:37 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  4. 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));
        }
    
        public List<CrawlingInfoParam> getCrawlingInfoParamList(final String id) {
            return crawlingInfoParamBhv.selectList(cb -> {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  5. 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 Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 12 01:54:46 UTC 2024
    - 28.5K 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);
        }
    
        public int generate(final ExecutorService executorService, final boolean cleanup) {
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:20:39 UTC 2024
    - 21.5K bytes
    - Viewed (0)
Back to top