Merge pull request #97 from unistack-org/tuning
tune default redis opts, add tls config support
This commit is contained in:
commit
fcab95bd8a
35
redis.go
35
redis.go
@ -263,10 +263,16 @@ func (r *rkv) configure() error {
|
|||||||
if r.opts.Context != nil {
|
if r.opts.Context != nil {
|
||||||
if c, ok := r.opts.Context.Value(configKey{}).(*redis.Options); ok {
|
if c, ok := r.opts.Context.Value(configKey{}).(*redis.Options); ok {
|
||||||
redisOptions = c
|
redisOptions = c
|
||||||
|
if r.opts.TLSConfig != nil {
|
||||||
|
redisOptions.TLSConfig = r.opts.TLSConfig
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if c, ok := r.opts.Context.Value(clusterConfigKey{}).(*redis.ClusterOptions); ok {
|
if c, ok := r.opts.Context.Value(clusterConfigKey{}).(*redis.ClusterOptions); ok {
|
||||||
redisClusterOptions = c
|
redisClusterOptions = c
|
||||||
|
if r.opts.TLSConfig != nil {
|
||||||
|
redisClusterOptions.TLSConfig = r.opts.TLSConfig
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -279,13 +285,34 @@ func (r *rkv) configure() error {
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
// Backwards compatibility
|
// Backwards compatibility
|
||||||
redisOptions = &redis.Options{
|
redisOptions = &redis.Options{
|
||||||
Addr: nodes[0],
|
Addr: nodes[0],
|
||||||
Password: "", // no password set
|
Password: "", // no password set
|
||||||
DB: 0, // use default DB
|
DB: 0, // use default DB
|
||||||
|
MaxRetries: 2,
|
||||||
|
MaxRetryBackoff: 256 * time.Millisecond,
|
||||||
|
DialTimeout: 1 * time.Second,
|
||||||
|
ReadTimeout: 1 * time.Second,
|
||||||
|
WriteTimeout: 1 * time.Second,
|
||||||
|
PoolTimeout: 1 * time.Second,
|
||||||
|
IdleTimeout: 20 * time.Second,
|
||||||
|
MinIdleConns: 10,
|
||||||
|
TLSConfig: r.opts.TLSConfig,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else if redisOptions == nil && redisClusterOptions == nil && len(nodes) > 1 {
|
} else if redisOptions == nil && redisClusterOptions == nil && len(nodes) > 1 {
|
||||||
redisClusterOptions = &redis.ClusterOptions{Addrs: nodes}
|
redisClusterOptions = &redis.ClusterOptions{
|
||||||
|
Addrs: nodes,
|
||||||
|
Password: "", // no password set
|
||||||
|
MaxRetries: 2,
|
||||||
|
MaxRetryBackoff: 256 * time.Millisecond,
|
||||||
|
DialTimeout: 1 * time.Second,
|
||||||
|
ReadTimeout: 1 * time.Second,
|
||||||
|
WriteTimeout: 1 * time.Second,
|
||||||
|
PoolTimeout: 1 * time.Second,
|
||||||
|
IdleTimeout: 20 * time.Second,
|
||||||
|
MinIdleConns: 10,
|
||||||
|
TLSConfig: r.opts.TLSConfig,
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if redisOptions != nil {
|
if redisOptions != nil {
|
||||||
|
Loading…
Reference in New Issue
Block a user