Add DB field to RedisOpt to specify redis db index

This commit is contained in:
Ken Hibino
2019-11-24 18:41:55 -08:00
parent d5c2b9b995
commit f91004e6aa
3 changed files with 13 additions and 2 deletions

View File

@@ -14,7 +14,11 @@ type Client struct {
// NewClient creates and returns a new client.
func NewClient(opt *RedisOpt) *Client {
client := redis.NewClient(&redis.Options{Addr: opt.Addr, Password: opt.Password})
client := redis.NewClient(&redis.Options{
Addr: opt.Addr,
Password: opt.Password,
DB: opt.DB,
})
return &Client{rdb: newRDB(client)}
}