Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for deleteDocumentsByDocId (0.07 seconds)

  1. 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();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 26.1K bytes
    - Click Count (0)
  2. 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"));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 29.7K bytes
    - Click Count (0)
Back to Top