1 В избранное 0 Ответвления 0

OSCHINA-MIRROR/aesoper-cache

Присоединиться к Gitlife
Откройте для себя и примите участие в публичных проектах с открытым исходным кодом с участием более 10 миллионов разработчиков. Приватные репозитории также полностью бесплатны :)
Присоединиться бесплатно
Клонировать/Скачать
cache.go 1.1 КБ
Копировать Редактировать Web IDE Исходные данные Просмотреть построчно История
aesoper Отправлено 25.05.2021 12:04 5745f2c
package cache
import (
"gitee.com/aesoper/cache/factory"
"gitee.com/aesoper/cache/memcache"
"gitee.com/aesoper/cache/memory"
"gitee.com/aesoper/cache/redis"
)
type Cfg struct {
// 启用的缓存驱动 值为 redis|redis_cluster|memcache
Driver string `mapstructure:"driver" json:"driver"`
Redis redis.Options `mapstructure:"redis" json:"redis"`
RedisCluster redis.ClusterOptions `mapstructure:"redisCluster" json:"redisCluster"`
Memcache memcache.Options `mapstructure:"memcache" json:"memcache"`
Memory memory.Option `mapstructure:"memory" json:"memory"`
}
func New(cfg Cfg) (c factory.Cache, err error) {
var op factory.CacheOption
if len(cfg.Driver) == 0 {
cfg.Driver = "memory"
}
switch cfg.Driver {
case "redis":
op = redis.WithRedisOptions(cfg.Redis)
break
case "redis_cluster":
op = redis.WithRedisClusterOptions(cfg.RedisCluster)
break
case "memcache":
op = memcache.WithMemcacheOption(cfg.Memcache)
break
case "memory":
op = memory.WithMemoryOption(cfg.Memory)
break
default:
op = redis.WithRedisOptions(cfg.Redis)
}
return factory.NewCache(cfg.Driver, op)
}

Опубликовать ( 0 )

Вы можете оставить комментарий после Вход в систему

1
https://api.gitlife.ru/oschina-mirror/aesoper-cache.git
git@api.gitlife.ru:oschina-mirror/aesoper-cache.git
oschina-mirror
aesoper-cache
aesoper-cache
master