Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 25 of 25 for fess_log (0.05 sec)

  1. 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)
  2. src/main/resources/fess_job.xml

    Shinsuke Sugaya <******@****.***> 1749766905 +0900
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Jun 12 22:21:45 UTC 2025
    - 1.5K 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. src/main/resources/app.xml

    	<include path="lastaflute.xml"/>
    	<include path="lasta_job.xml"/>
    
    	<include path="fess.xml"/>
    	<include path="fess_api.xml"/>
    	<include path="fess_cors.xml"/>
    	<include path="fess_dict.xml"/>
    	<include path="fess_job.xml"/>
    	<include path="fess_ldap.xml"/>
    	<include path="fess_query.xml"/>
    	<include path="fess_rankfusion.xml"/>
    	<include path="fess_score.xml"/>
    	<include path="fess_sso.xml"/>
    	<include path="fess_thumbnail.xml"/>
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sun Nov 19 02:22:47 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  5. 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