1 Star 0 Fork 0

灵狐/go-fox-edge-common

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
RedisClient.go 487 Bytes
一键复制 编辑 原始数据 按行查看 历史
灵狐 提交于 2024-10-23 10:30 . 初始化仓库
package commRedis
import (
"fmt"
"github.com/go-redis/redis"
)
func SetRedisOptions(addr string, password string) {
Options = &redis.Options{
Addr: addr,
Password: password,
DB: 0,
}
}
func ConnectRedis() {
Client = redis.NewClient(Options)
}
func TestConnect() bool {
// 拦截可能产生的异常
defer func() {
if e := recover(); e != nil {
fmt.Println("尚未初始化连接redis:", e)
}
}()
pong := Client.Ping().Val()
return pong == "PONG"
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/fierce_wolf/go-fox-edge-common.git
git@gitee.com:fierce_wolf/go-fox-edge-common.git
fierce_wolf
go-fox-edge-common
go-fox-edge-common
v1.0.0

搜索帮助