Name | Type | Default | Description |
remote-cache-container | | |
The name of the remote cache container to use.
|
socket-timeout | long | ${RemoteStore.socketTimeout} |
Enable/disable SO_TIMEOUT on socket connections to remote Hot Rod servers with the specified timeout, in milliseconds.
A timeout of zero is interpreted as an infinite timeout.
|
tcp-no-delay | boolean | ${RemoteStore.tcpNoDelay} |
Enable/disable TCP_NODELAY on socket connections to remote Hot Rod servers.
|
hotrod-wrapping | boolean | ${RemoteStore.hotRodWrapping} |
Deprecated since 12.0. Since 13.0, use only 'raw-values' if the remote server will be accessed by Hot Rod clients.
Ensures that, when entries are retrieved from the remote store, they will be wrapped in a format suitable for serving via HotRod. This flag must be enabled when performing a rolling upgrade.
|
raw-values | boolean | ${RemoteStore.rawValues} |
Enables the storage of data on the remote server in "raw" format as opposed to wrapping the entries in InternalCacheEntry. This ensures that clients can use data directly from the remote cache store.
|
balancing-strategy | string | ${RemoteStore.balancingStrategy} |
For replicated (vs distributed) Hot Rod server clusters, the client balances requests to the servers according to this strategy.
|
connect-timeout | int | ${RemoteStore.connectionTimeout} |
This property defines the maximum socket connect timeout before giving up connecting to the server.
|
force-return-values | boolean | ${RemoteStore.forceReturnValues} |
Whether or not to implicitly FORCE_RETURN_VALUE for all calls.
|
key-size-estimate | int | ${RemoteStore.keySizeEstimate} |
Deprecated since 12.0, does nothing and will be removed in 15.0
|
marshaller | string | |
Allows you to specify a custom {@link org.infinispan.marshall.Marshaller} implementation to serialize and deserialize user objects.
|
protocol-version | string | ${RemoteStore.protocolVersion} |
This property defines the protocol version that this client should use. Defaults to 1.1. Other valid values include 1.0.
|
cache | string | |
The name of the remote cache in the remote infinispan cluster, to which to connect to. If unspecified, the default
cache will be used
|
value-size-estimate | int | ${RemoteStore.valueSizeEstimate} |
Deprecated since 12.0, does nothing and will be removed in 15.0
|
uri | anyURI | |
URI for the remote cache that lets you configure connection strings with Hot Rod client properties.
|