Redis cache

This commit is contained in:
2025-03-29 02:24:15 +08:00
parent f3f9ebb5af
commit 1651328a74
26 changed files with 786 additions and 636 deletions

14
pkg/internal/cache/redis.go vendored Normal file
View File

@ -0,0 +1,14 @@
package cache
import "github.com/redis/go-redis/v9"
var Rdb *redis.Client
func ConnectRedis(addr, password string, db int) error {
Rdb = redis.NewClient(&redis.Options{
Addr: addr,
Password: password,
DB: db,
})
return nil
}