You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
421 B
28 lines
421 B
package confignosql
|
|
|
|
import "fmt"
|
|
|
|
type RedisSetUpV9 struct {
|
|
RedisClusterV9 RedisConfitSetUp `mapstructure:"redisCluster" json:"redisCluster" yaml:"redisCluster"` //内网集群
|
|
}
|
|
|
|
/*
|
|
*
|
|
@ 作者: 秦东
|
|
@ 时间: 2023-12-13 11:14:06
|
|
@ 功能: 开启v9集群
|
|
@ 参数
|
|
|
|
#
|
|
|
|
@ 返回值
|
|
|
|
#
|
|
|
|
@ 方法原型
|
|
|
|
#
|
|
*/
|
|
func (r *RedisConfitSetUp) OpenRedisClan() {
|
|
fmt.Printf("开启%v Redis库 %v\n", r.UrlPathList, r.Name)
|
|
}
|
|
|