Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for DocList (0.04 sec)

  1. src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImplTest.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);
    
    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/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: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 26.1K bytes
    - Viewed (0)
  3. 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: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 32.7K bytes
    - Viewed (0)
  4. 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: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 19.1K bytes
    - Viewed (0)
  5. 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: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 54.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java

                final List<Map<String, Object>> docList = results[i].getDocumentList();
                if (logger.isDebugEnabled()) {
                    logger.debug("[{}] {} docs / {} docs.", i, docList.size(), results[i].getAllRecordCount());
                }
                for (int j = 0; j < docList.size(); j++) {
                    final Map<String, Object> doc = docList.get(j);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.8K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java

            }
        }
    
        private static class TestIndexingHelper extends IndexingHelper {
            @Override
            public void sendDocuments(SearchEngineClient client, DocList docList) {
                docList.clear();
            }
    
            @Override
            public long calculateDocumentSize(Map<String, Object> map) {
                return 100L;
            }
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 33K bytes
    - Viewed (0)
  8. 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: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 121.9K bytes
    - Viewed (0)
Back to top