feat: add redis password (#201)

This commit is contained in:
bootgo
2025-07-29 21:34:44 +08:00
committed by GitHub
parent 02b4171576
commit f589bb94bb
2 changed files with 3 additions and 0 deletions

View File

@@ -27,9 +27,11 @@ type Client = redis.Client
func New() *redis.Client {
addr := os.Getenv("REDIS_ADDR")
password := os.Getenv("REDIS_PASSWORD")
rdb := redis.NewClient(&redis.Options{
Addr: addr, // Redis地址
DB: 0, // 默认数据库
Password: password,
// 连接池配置
PoolSize: 100, // 最大连接数建议设置为CPU核心数*10
MinIdleConns: 10, // 最小空闲连接