27 lines
529 B
Go
27 lines
529 B
Go
package client
|
|
|
|
import (
|
|
"Lee-WineList/config"
|
|
"context"
|
|
"git.echol.cn/loser/logger/log"
|
|
"github.com/go-redis/redis/v8"
|
|
)
|
|
|
|
var Redis *redis.Client
|
|
|
|
func InitRedisClient() {
|
|
conf := config.Scd.Redis
|
|
// 初始化连接
|
|
conn := redis.NewClient(&redis.Options{
|
|
Addr: conf.GetDSN(),
|
|
Password: conf.Password,
|
|
DB: conf.Db,
|
|
})
|
|
if err := conn.Ping(context.Background()).Err(); err != nil {
|
|
log.Panicf("Redis连接初始化失败: %v", err)
|
|
} else {
|
|
log.Debug("Redis连接初始化成功")
|
|
}
|
|
Redis = conn
|
|
}
|