Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for deleteDocumentsByDocId (0.08 sec)

  1. src/test/java/org/codelibs/fess/helper/IndexingHelperTest.java

            final List<String> docList = new ArrayList<>();
    
            indexingHelper.deleteDocumentsByDocId(client, docList);
            assertEquals("fess.update", resultMap.get("index"));
            assertEquals(0, ((List<String>) resultMap.get("ids")).size());
    
            docList.add("001");
            indexingHelper.deleteDocumentsByDocId(client, docList);
            assertEquals("fess.update", resultMap.get("index"));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 29.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/IndexingHelper.java

         * @param searchEngineClient the search engine client to use for deletion
         * @param docIdList the list of document IDs to delete
         * @return the number of documents that were deleted
         */
        public long deleteDocumentsByDocId(final SearchEngineClient searchEngineClient, final List<String> docIdList) {
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 26.1K bytes
    - Viewed (0)
Back to top