mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-11-16 04:24:57 +08:00
28 lines
598 B
Go
28 lines
598 B
Go
package redis
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/1Panel-dev/1Panel/agent/global"
|
|
"github.com/go-redis/redis"
|
|
)
|
|
|
|
type DBInfo struct {
|
|
Address string `json:"address"`
|
|
Port uint `json:"port"`
|
|
Password string `json:"password"`
|
|
}
|
|
|
|
func NewRedisClient(conn DBInfo) (*redis.Client, error) {
|
|
client := redis.NewClient(&redis.Options{
|
|
Addr: fmt.Sprintf("%s:%v", conn.Address, conn.Port),
|
|
Password: conn.Password,
|
|
DB: 0,
|
|
})
|
|
|
|
if _, err := client.Ping().Result(); err != nil {
|
|
global.LOG.Errorf("check redis conn failed, err: %v", err)
|
|
return client, err
|
|
}
|
|
return client, nil
|
|
}
|