Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for advance (0.02 sec)

  1. README.md

    container.singleton("extractorFactory", ExtractorFactory.class, factory -> {
        factory.addExtractor("application/custom", container.getComponent("customExtractor"));
    });
    ```
    
    ## Advanced Configuration
    
    ### Multi-Instance Crawling
    
    ```java
    // Create multiple crawler instances
    Crawler crawler1 = container.getComponent("crawler");
    crawler1.setSessionId("session1");
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Aug 31 05:32:52 UTC 2025
    - 15.3K bytes
    - Viewed (0)
  2. README.md

            );
        })
        .error(throwable -> {
            // Handle error
            System.err.println("Error: " + throwable.getMessage());
        });
    ```
    
    ## Advanced Usage
    
    ### Index from Existing Documents
    
    ```java
    import org.codelibs.fess.suggest.index.contents.document.ESSourceReader;
    
    // Index suggestions from existing Elasticsearch documents
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Sun Aug 31 03:31:14 UTC 2025
    - 12.1K bytes
    - Viewed (1)
Back to top