Package com.netflix.spinnaker.kork.jedis
Class JedisDriverProperties
- java.lang.Object
-
- com.netflix.spinnaker.kork.jedis.JedisDriverProperties
-
public class JedisDriverProperties extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description java.lang.StringconnectionThe redis connection uri: (e.g.org.apache.commons.pool2.impl.GenericObjectPoolConfigpoolConfigRedis object pool configuration.inttimeoutMsClient connection timeout.
-
Constructor Summary
Constructors Constructor Description JedisDriverProperties()
-
-
-
Field Detail
-
connection
public java.lang.String connection
The redis connection uri: (e.g. redis://localhost:6379)
-
timeoutMs
public int timeoutMs
Client connection timeout. (Not to be confused with command timeout).
-
poolConfig
public org.apache.commons.pool2.impl.GenericObjectPoolConfig poolConfig
Redis object pool configuration.If left null, the default object pool as defined in
JedisClientConfigurationwill be used.
-
-