mirror of
https://gitee.com/johng/gf.git
synced 2024-12-02 12:17:53 +08:00
139 lines
3.9 KiB
Go
139 lines
3.9 KiB
Go
// Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
|
|
//
|
|
// This Source Code Form is subject to the terms of the MIT License.
|
|
// If a copy of the MIT was not distributed with this file,
|
|
// You can obtain one at https://github.com/gogf/gf.
|
|
|
|
// Package redis provides gredis.Adapter implements using go-redis.
|
|
package redis
|
|
|
|
import (
|
|
"context"
|
|
"time"
|
|
|
|
"github.com/redis/go-redis/v9"
|
|
|
|
"github.com/gogf/gf/v2/container/gvar"
|
|
"github.com/gogf/gf/v2/database/gredis"
|
|
"github.com/gogf/gf/v2/errors/gerror"
|
|
"github.com/gogf/gf/v2/text/gstr"
|
|
)
|
|
|
|
// Redis is an implement of Adapter using go-redis.
|
|
type Redis struct {
|
|
client redis.UniversalClient
|
|
config *gredis.Config
|
|
}
|
|
|
|
const (
|
|
defaultPoolMaxIdle = 10
|
|
defaultPoolMaxActive = 100
|
|
defaultPoolIdleTimeout = 10 * time.Second
|
|
defaultPoolWaitTimeout = 10 * time.Second
|
|
defaultPoolMaxLifeTime = 30 * time.Second
|
|
defaultMaxRetries = -1
|
|
)
|
|
|
|
func init() {
|
|
gredis.RegisterAdapterFunc(func(config *gredis.Config) gredis.Adapter {
|
|
return New(config)
|
|
})
|
|
}
|
|
|
|
// New creates and returns a redis adapter using go-redis.
|
|
func New(config *gredis.Config) *Redis {
|
|
fillWithDefaultConfiguration(config)
|
|
opts := &redis.UniversalOptions{
|
|
Addrs: gstr.SplitAndTrim(config.Address, ","),
|
|
Username: config.User,
|
|
Password: config.Pass,
|
|
DB: config.Db,
|
|
MaxRetries: defaultMaxRetries,
|
|
PoolSize: config.MaxActive,
|
|
MinIdleConns: config.MinIdle,
|
|
MaxIdleConns: config.MaxIdle,
|
|
ConnMaxLifetime: config.MaxConnLifetime,
|
|
ConnMaxIdleTime: config.IdleTimeout,
|
|
PoolTimeout: config.WaitTimeout,
|
|
DialTimeout: config.DialTimeout,
|
|
ReadTimeout: config.ReadTimeout,
|
|
WriteTimeout: config.WriteTimeout,
|
|
MasterName: config.MasterName,
|
|
TLSConfig: config.TLSConfig,
|
|
}
|
|
|
|
var client redis.UniversalClient
|
|
if opts.MasterName != "" {
|
|
redisSentinel := opts.Failover()
|
|
redisSentinel.ReplicaOnly = config.SlaveOnly
|
|
client = redis.NewFailoverClient(redisSentinel)
|
|
} else if len(opts.Addrs) > 1 {
|
|
client = redis.NewClusterClient(opts.Cluster())
|
|
} else {
|
|
client = redis.NewClient(opts.Simple())
|
|
}
|
|
|
|
return &Redis{
|
|
client: client,
|
|
config: config,
|
|
}
|
|
}
|
|
|
|
// Do send a command to the server and returns the received reply.
|
|
// It uses json.Marshal for struct/slice/map type values before committing them to redis.
|
|
func (r *Redis) Do(ctx context.Context, command string, args ...interface{}) (*gvar.Var, error) {
|
|
conn, err := r.Conn(ctx)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
defer func() {
|
|
_ = conn.Close(ctx)
|
|
}()
|
|
return conn.Do(ctx, command, args...)
|
|
}
|
|
|
|
// Close closes the redis connection pool, which will release all connections reserved by this pool.
|
|
// It is commonly not necessary to call Close manually.
|
|
func (r *Redis) Close(ctx context.Context) (err error) {
|
|
if err = r.client.Close(); err != nil {
|
|
err = gerror.Wrap(err, `Redis Client Close failed`)
|
|
}
|
|
return
|
|
}
|
|
|
|
// Conn retrieves and returns a connection object for continuous operations.
|
|
// Note that you should call Close function manually if you do not use this connection any further.
|
|
func (r *Redis) Conn(ctx context.Context) (gredis.Conn, error) {
|
|
return &Conn{
|
|
redis: r,
|
|
}, nil
|
|
}
|
|
|
|
func fillWithDefaultConfiguration(config *gredis.Config) {
|
|
// The MaxIdle is the most important attribute of the connection pool.
|
|
// Only if this attribute is set, the created connections from client
|
|
// can not exceed the limit of the server.
|
|
if config.MaxIdle == 0 {
|
|
config.MaxIdle = defaultPoolMaxIdle
|
|
}
|
|
// This value SHOULD NOT exceed the connection limit of redis server.
|
|
if config.MaxActive == 0 {
|
|
config.MaxActive = defaultPoolMaxActive
|
|
}
|
|
if config.IdleTimeout == 0 {
|
|
config.IdleTimeout = defaultPoolIdleTimeout
|
|
}
|
|
if config.WaitTimeout == 0 {
|
|
config.WaitTimeout = defaultPoolWaitTimeout
|
|
}
|
|
if config.MaxConnLifetime == 0 {
|
|
config.MaxConnLifetime = defaultPoolMaxLifeTime
|
|
}
|
|
if config.WriteTimeout == 0 {
|
|
config.WriteTimeout = -1
|
|
}
|
|
if config.ReadTimeout == 0 {
|
|
config.ReadTimeout = -1
|
|
}
|
|
}
|