gf/database/gredis/gredis_instance.go
2022-01-28 14:51:49 +08:00

44 lines
1.0 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 gredis
import (
"context"
"github.com/gogf/gf/v2/container/gmap"
"github.com/gogf/gf/v2/internal/intlog"
)
var (
localInstances = gmap.NewStrAnyMap(true)
)
// Instance returns an instance of redis client with specified group.
// The `name` param is unnecessary, if `name` is not passed,
// it returns a redis instance with default configuration group.
func Instance(name ...string) *Redis {
group := DefaultGroupName
if len(name) > 0 && name[0] != "" {
group = name[0]
}
v := localInstances.GetOrSetFuncLock(group, func() interface{} {
if config, ok := GetConfig(group); ok {
r, err := New(config)
if err != nil {
intlog.Errorf(context.TODO(), `%+v`, err)
return nil
}
return r
}
return nil
})
if v != nil {
return v.(*Redis)
}
return nil
}