1 Star 0 Fork 0

fkil555/gin-extend

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
cache_options.go 643 Bytes
一键复制 编辑 原始数据 按行查看 历史
fkil555 提交于 2023-09-10 21:31 . gin-extend init
package gredis
// 访问实例时的配置项
type CacheOptions struct {
forceMaster bool
}
// 配置注入func
type OptionFunc func(options *CacheOptions)
// 生成配置
func generateOptions(optionFuncs []OptionFunc) (cacheOptions *CacheOptions) {
cacheOptions = &CacheOptions{}
if len(optionFuncs) > 0 {
for _, f := range optionFuncs {
f(cacheOptions)
}
}
return
}
// 复制配置
func (options *CacheOptions) clone() (cloned *CacheOptions) {
cloned = &CacheOptions{}
*cloned = *options
return
}
// 强制读主
func WithForceMaster() OptionFunc {
return func(options *CacheOptions) {
options.forceMaster = true
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/fkil555/gin-extend.git
git@gitee.com:fkil555/gin-extend.git
fkil555
gin-extend
gin-extend
v0.1.40

搜索帮助