Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for fess_indices (0.04 sec)

  1. ADDING_NEW_LANGUAGE.md

    If your language requires special text analysis (stemming, stop words, etc.), you may need to configure OpenSearch analyzers.
    
    ### 1. Update OpenSearch Index Template
    
    Edit `src/main/resources/fess_indices/fess.json` to add language-specific analyzers.
    
    **Example for Swedish:**
    ```json
    {
      "analysis": {
        "filter": {
          "swedish_stop": {
            "type": "stop",
            "stopwords": "_swedish_"
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 06 11:36:30 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java

            return redirect(getClass()); // no-op
        }
    
        private Path getDocJsonPath() {
            return ResourceUtil.getClassesPath("fess_indices", "fess", "doc.json");
        }
    
        private Path getFessJsonPath() {
            return ResourceUtil.getClassesPath("fess_indices", "fess.json");
        }
    
        private StreamResponse writeNdjsonResponse(final String id, final Consumer<Writer> writeCall) {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Mon Nov 24 02:07:40 UTC 2025
    - 32.1K bytes
    - Viewed (0)
Back to top