- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 10 for DocList (0.38 sec)
-
src/main/java/org/codelibs/fess/util/DocList.java
/** Total processing time for all documents in this list */ private long processingTime = 0; /** * Default constructor for DocList. * Creates a new empty document list with zero content size and processing time. */ public DocList() { super(); } /** * Clears all documents from the list and resets metrics.Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/IndexingHelper.java
* * @param searchEngineClient the search engine client to use for indexing * @param docList the list of documents to be indexed * @throws SearchEngineClientException if the bulk indexing operation fails */ public void sendDocuments(final SearchEngineClient searchEngineClient, final DocList docList) { if (docList.isEmpty()) { return; }Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 26.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImpl.java
synchronized (docList) { docList.add(ingest(paramMap, dataMap)); final long contentSize = indexingHelper.calculateDocumentSize(dataMap); docList.addContentSize(contentSize); final long processingTime = systemHelper.getCurrentTimeAsLong() - startTime; docList.addProcessingTime(processingTime); if (logger.isDebugEnabled()) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 10.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/indexer/IndexUpdater.java
MemoryUtil.byteCountToDisplaySize(contentSize), processingTime, docList.size(), docList.getContentSize()); } if (docList.getContentSize() >= maxDocumentRequestSize) { indexingHelper.sendDocuments(searchEngineClient, docList); } documentSize++; if (logger.isDebugEnabled()) {
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 32.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/documents/ApiAdminDocumentsAction.java
final CrawlingInfoHelper crawlingInfoHelper = ComponentUtil.getCrawlingInfoHelper(); final LanguageHelper languageHelper = ComponentUtil.getLanguageHelper(); final List<Map<String, Object>> docList = body.documents.stream().map(doc -> { if (!doc.containsKey(indexFieldContentLength)) { long contentLength = 0; if (doc.get(indexFieldTitle) instanceof final String title) {
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/keymatch/AdminKeymatchAction.java
docList.addAll(keyMatchHelper.getBoostedDocumentList(entity)); }).orElse(() -> { throwValidationError(messages -> messages.addErrorsCrudCouldNotFindCrudTable(GLOBAL, id), this::asListHtml); }); }); }).renderWith(data -> { data.register("docs", docList); }); }
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 20 13:56:35 UTC 2025 - 16.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java
final List<Map<String, Object>> docList = indexingHelper.getChildDocumentList(searchEngineClient, id, new String[] { fessConfig.getIndexFieldUrl() }); if (docList.isEmpty()) { return null; } if (logger.isDebugEnabled()) { logger.debug("Found documents: {}", docList); }
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Dec 11 09:47:03 UTC 2025 - 19.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java
final List<Map<String, Object>> docList = results[searcherIndex].getDocumentList(); if (logger.isDebugEnabled()) { logger.debug("Searcher[{}]: retrieved {} documents / {} total documents", searcherIndex, docList.size(), results[searcherIndex].getAllRecordCount()); } for (int docRank = 0; docRank < docList.size(); docRank++) {
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 27.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/api/json/SearchApiManager.java
final List<Map<String, Object>> docList = searchHelper.getDocumentListByDocIds(docIds, new String[] { fessConfig.getIndexFieldUrl(), fessConfig.getIndexFieldDocId(), fessConfig.getIndexFieldFavoriteCount() }, OptionalThing.empty(), SearchRequestType.JSON); List<String> urlList = new ArrayList<>(docList.size()); for (final Map<String, Object> doc : docList) {
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 55.4K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java
* * @param index the target index * @param docList list of documents to add * @param options callback for customizing index request options * @return the bulk response */ public BulkResponse addAll(final String index, final List<Map<String, Object>> docList, final BiConsumer<Map<String, Object>, IndexRequestBuilder> options) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 122.4K bytes - Viewed (1)