13 lines
180 B
Go
13 lines
180 B
Go
package cache
|
|
|
|
import "github.com/tal-tech/go-zero/core/stores/redis"
|
|
|
|
type (
|
|
ClusterConf []NodeConf
|
|
|
|
NodeConf struct {
|
|
redis.RedisConf
|
|
Weight int `json:",default=100"`
|
|
}
|
|
)
|