Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for fess_log (0.05 sec)

  1. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

        }
    
        private static final Logger logger = LogManager.getLogger(SearchEngineClient.class);
    
        private static final String DOC_INDEX = "fess";
    
        private static final String LOG_INDEX_PREFIX = "fess_log";
    
        private static final String USER_INDEX_PREFIX = "fess_user";
    
        private static final String CONFIG_INDEX_PREFIX = "fess_config";
    
        /** OpenSearch runner for managing the embedded search engine */
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 122.4K bytes
    - Viewed (1)
  2. src/main/resources/fess_config.properties

    index.document.crawler.filter.number_of_replicas=1
    # Index name for configuration data.
    index.config.index=fess_config
    # Index name for user data.
    index.user.index=fess_user
    # Index name for log data.
    index.log.index=fess_log
    # Prefix for dictionary index names.
    index.dictionary.prefix=
    
    # doc management
    
    # Array-type fields for admin in the index.
    index.admin.array.fields=lang,role,label,anchor,virtual_host
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Dec 11 09:47:03 UTC 2025
    - 54.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        String INDEX_CONFIG_INDEX = "index.config.index";
    
        /** The key of the configuration. e.g. fess_user */
        String INDEX_USER_INDEX = "index.user.index";
    
        /** The key of the configuration. e.g. fess_log */
        String INDEX_LOG_INDEX = "index.log.index";
    
        /** The key of the configuration. e.g.  */
        String INDEX_DICTIONARY_PREFIX = "index.dictionary.prefix";
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 525.7K bytes
    - Viewed (2)
  4. MIGRATION.md

    import json
    
    with open('documents.json', 'r') as infile, \
         open('fess-documents.json', 'w') as outfile:
        for line in infile:
            doc = json.loads(line)
    
            # Transform to Fess format
            fess_doc = {
                "url": doc.get("url", ""),
                "title": doc.get("title", ""),
                "content": doc.get("content", ""),
                "mimetype": doc.get("mimetype", "text/html"),
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 06 12:40:11 UTC 2025
    - 23.2K bytes
    - Viewed (0)
Back to top