redis_config.go 531 字节
Newer Older
E
eoLinker API Management 已提交
1 2 3 4 5 6
package entity

import (
	"strings"
)

Y
Your Name 已提交
7
//GetMode 获取redis模式
E
eoLinker API Management 已提交
8 9 10 11
func (c CLusterRedis) GetMode() string {
	return c.Mode
}

Y
Your Name 已提交
12
//GetAddrs 获取地址
E
eoLinker API Management 已提交
13 14 15 16
func (c CLusterRedis) GetAddrs() []string {
	return strings.Split(c.Addrs, ",")
}

Y
Your Name 已提交
17
//GetMasters getMasters
E
eoLinker API Management 已提交
18 19 20 21
func (c CLusterRedis) GetMasters() []string {
	return strings.Split(c.Masters, ",")
}

Y
Your Name 已提交
22
//GetDbIndex 获取数据序号
E
eoLinker API Management 已提交
23 24 25 26
func (c CLusterRedis) GetDbIndex() int {
	return c.DbIndex
}

Y
Your Name 已提交
27
//GetPassword 获取密码
E
eoLinker API Management 已提交
28 29 30
func (c CLusterRedis) GetPassword() string {
	return c.Password
}