redis.go
1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
package cache
import (
"fmt"
"gitlab.fjmaimaimai.com/allied-creation/allied-creation-gateway/pkg/constant"
"github.com/go-redis/redis"
)
var clientRedis *redis.Client
const (
KEY_PREFIX string = "allied:creation:gateway:"
)
func InitRedist() *redis.Client {
options := redis.Options{
Network: "tcp",
Addr: fmt.Sprintf("%s:%s", constant.REDIS_HOST, constant.REDIS_PORT),
Dialer: nil,
OnConnect: nil,
Password: "",
DB: 1,
MaxRetries: 0,
MinRetryBackoff: 0,
MaxRetryBackoff: 0,
DialTimeout: 0,
ReadTimeout: 0,
WriteTimeout: 0,
PoolSize: 0,
MinIdleConns: 0,
MaxConnAge: 0,
PoolTimeout: 0,
IdleTimeout: 0,
IdleCheckFrequency: 0,
TLSConfig: nil,
}
// 新建一个client
clientRedis = redis.NewClient(&options)
pong, err := clientRedis.Ping().Result()
if err != nil {
e := fmt.Errorf("redis 连接失败,%s,%w", pong, err)
panic(e)
}
return clientRedis
}
func GetRedis() *redis.Client {
return clientRedis
}