1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- // Copyright 2019 getensh.com. All rights reserved.
- // Use of this source code is governed by getensh.com.
- package redis
- import (
- "fmt"
- "github.com/go-redis/redis"
- )
- type Redis struct {
- cluster bool
- client *redis.Client
- cclient *redis.ClusterClient
- }
- var (
- errRedis = fmt.Errorf("redis is nil")
- errRedisClient = fmt.Errorf("redis client is nil")
- errRedisCClient = fmt.Errorf("redis cclient is nil")
- )
- func New(addrs []string, passwd string, db int,
- poolSize, minIdleConns, maxRetries int, cluster bool) *Redis {
- if len(addrs) == 0 {
- panic("Redis's addrs is empty.")
- }
- r := &Redis{cluster: cluster}
- if cluster {
- r.cclient = redis.NewClusterClient(&redis.ClusterOptions{
- Addrs: addrs,
- Password: passwd,
- PoolSize: poolSize,
- MinIdleConns: minIdleConns,
- MaxRetries: maxRetries,
- })
- // check if redis server is ok.
- if _, err := r.cclient.Ping().Result(); err != nil {
- panic(err)
- }
- } else {
- r.client = redis.NewClient(&redis.Options{
- Addr: addrs[0],
- Password: passwd,
- DB: db,
- PoolSize: poolSize,
- MinIdleConns: minIdleConns,
- MaxRetries: maxRetries,
- })
- // check if redis server is ok.
- if _, err := r.client.Ping().Result(); err != nil {
- panic(err)
- }
- }
- return r
- }
- // Close 关闭redis
- func (p *Redis) Close() {
- if p != nil {
- if p.cluster {
- if p.cclient != nil {
- p.cclient.Close()
- }
- } else {
- if p.client != nil {
- p.client.Close()
- }
- }
- }
- }
|