Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Kryo (0.08 sec)

  1. src/main/java/org/codelibs/fess/crawler/serializer/DataSerializer.java

        /** Constant for Kryo serializer type. */
        protected static final String KRYO = "kryo";
    
        /** ThreadLocal container for Kryo instances to ensure thread safety. */
        protected final ThreadLocal<Kryo> kryoThreadLocal;
    
        /**
         * Constructs a new DataSerializer.
         * <p>
         * Initializes the ThreadLocal Kryo instances with appropriate configuration.
         * The Kryo instances are configured to not require class registration for
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  2. pom.xml

    			<artifactId>bcprov-jdk18on</artifactId>
    			<version>${bouncycastle.version}</version>
    		</dependency>
    		<dependency>
    			<groupId>com.esotericsoftware</groupId>
    			<artifactId>kryo</artifactId>
    			<version>${kryo.version}</version>
    		</dependency>
    
    		<!-- suggest library -->
    		<dependency>
    			<groupId>org.codelibs.fess</groupId>
    			<artifactId>fess-suggest</artifactId>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Sep 04 05:22:58 UTC 2025
    - 49.6K bytes
    - Viewed (0)
  3. src/main/resources/fess_config.properties

    # Default script for the crawler (e.g., groovy).
    crawler.default.script=groovy
    # Number of threads for HTTP crawling.
    crawler.http.thread_pool.size=0
    # Serializer type for crawler data (e.g., kryo).
    crawler.data.serializer=kryo
    # Maximum length of site name in documents.
    crawler.document.max.site.length=100
    # Encoding for site names in documents.
    crawler.document.site.encoding=UTF-8
    # Hostname to use when unknown in documents.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 14:45:37 UTC 2025
    - 54.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         */
        Integer getCrawlerHttpThreadPoolSizeAsInteger();
    
        /**
         * Get the value for the key 'crawler.data.serializer'. <br>
         * The value is, e.g. kryo <br>
         * comment: Serializer type for crawler data (e.g., kryo).
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getCrawlerDataSerializer();
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 525.6K bytes
    - Viewed (1)
  5. go.sum

    golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
    golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ=
    golang.org/x/text v0.6.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8=
    golang.org/x/text v0.7.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8=
    golang.org/x/text v0.9.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8=
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Sat Sep 06 17:33:19 UTC 2025
    - 79.9K bytes
    - Viewed (0)
Back to top