增加redis配置项,可通过配置文件配置指定的redis库
This commit is contained in:
parent
3e8a6946e0
commit
76fd7b38df
|
@ -6,6 +6,7 @@ query:
|
||||||
redis:
|
redis:
|
||||||
addrs:
|
addrs:
|
||||||
- 127.0.0.1:6379
|
- 127.0.0.1:6379
|
||||||
|
db: 0
|
||||||
pass: ""
|
pass: ""
|
||||||
# timeout:
|
# timeout:
|
||||||
# conn: 500
|
# conn: 500
|
||||||
|
|
|
@ -52,6 +52,7 @@ link:
|
||||||
# for alarm event and message queue
|
# for alarm event and message queue
|
||||||
redis:
|
redis:
|
||||||
addr: "127.0.0.1:6379"
|
addr: "127.0.0.1:6379"
|
||||||
|
db: 0
|
||||||
pass: ""
|
pass: ""
|
||||||
# in ms
|
# in ms
|
||||||
# timeout:
|
# timeout:
|
||||||
|
|
|
@ -15,6 +15,7 @@ var Config RedisSection
|
||||||
type RedisSection struct {
|
type RedisSection struct {
|
||||||
Addrs []string `yaml:"addrs"`
|
Addrs []string `yaml:"addrs"`
|
||||||
Pass string `yaml:"pass"`
|
Pass string `yaml:"pass"`
|
||||||
|
DB int `yaml:"db"`
|
||||||
Idle int `yaml:"idle"`
|
Idle int `yaml:"idle"`
|
||||||
Timeout TimeoutSection `yaml:"timeout"`
|
Timeout TimeoutSection `yaml:"timeout"`
|
||||||
Prefix string `yaml:"prefix"`
|
Prefix string `yaml:"prefix"`
|
||||||
|
@ -31,6 +32,7 @@ func Init(cfg RedisSection) {
|
||||||
|
|
||||||
addrs := cfg.Addrs
|
addrs := cfg.Addrs
|
||||||
pass := cfg.Pass
|
pass := cfg.Pass
|
||||||
|
db := cfg.DB
|
||||||
maxIdle := cfg.Idle
|
maxIdle := cfg.Idle
|
||||||
idleTimeout := 240 * time.Second
|
idleTimeout := 240 * time.Second
|
||||||
|
|
||||||
|
@ -59,6 +61,15 @@ func Init(cfg RedisSection) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if db != 0 {
|
||||||
|
if _, err := c.Do("SELECT", db); err != nil {
|
||||||
|
c.Close()
|
||||||
|
logger.Error("redis select db fail, db: ", db)
|
||||||
|
stats.Counter.Set("redis.conn.failed", 1)
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return c, err
|
return c, err
|
||||||
},
|
},
|
||||||
TestOnBorrow: PingRedis,
|
TestOnBorrow: PingRedis,
|
||||||
|
|
|
@ -43,6 +43,7 @@ type cleanerSection struct {
|
||||||
type redisSection struct {
|
type redisSection struct {
|
||||||
Addr string `yaml:"addr"`
|
Addr string `yaml:"addr"`
|
||||||
Pass string `yaml:"pass"`
|
Pass string `yaml:"pass"`
|
||||||
|
DB int `yaml:"db"`
|
||||||
Idle int `yaml:"idle"`
|
Idle int `yaml:"idle"`
|
||||||
Timeout timeoutSection `yaml:"timeout"`
|
Timeout timeoutSection `yaml:"timeout"`
|
||||||
}
|
}
|
||||||
|
|
|
@ -17,6 +17,7 @@ func InitRedis() {
|
||||||
|
|
||||||
addr := cfg.Redis.Addr
|
addr := cfg.Redis.Addr
|
||||||
pass := cfg.Redis.Pass
|
pass := cfg.Redis.Pass
|
||||||
|
db := cfg.Redis.DB
|
||||||
maxIdle := cfg.Redis.Idle
|
maxIdle := cfg.Redis.Idle
|
||||||
idleTimeout := 240 * time.Second
|
idleTimeout := 240 * time.Second
|
||||||
|
|
||||||
|
@ -44,6 +45,15 @@ func InitRedis() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if db != 0 {
|
||||||
|
if _, err := c.Do("SELECT", db); err != nil {
|
||||||
|
c.Close()
|
||||||
|
logger.Error("redis select db fail, db: ", db)
|
||||||
|
stats.Counter.Set("redis.conn.failed", 1)
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return c, err
|
return c, err
|
||||||
},
|
},
|
||||||
TestOnBorrow: PingRedis,
|
TestOnBorrow: PingRedis,
|
||||||
|
|
Loading…
Reference in New Issue