func ExampleCache_SetAdapter() {
var (
err error
ctx = gctx.New()
cache = gcache.New()
redisConfig = &gredis.Config{
Address: "127.0.0.1:6379",
Db: 9,
}
cacheKey = `key`
cacheValue = `value`
)
// Create redis client object.
redis, err := gredis.New(redisConfig)
if err != nil {
panic(err)
}
// Create redis cache adapter and set it to cache object.
cache.SetAdapter(gcache.NewAdapterRedis(redis))
// Set and Get using cache object.
err = cache.Set(ctx, cacheKey, cacheValue, time.Second)
if err != nil {
panic(err)
}
fmt.Println(cache.MustGet(ctx, cacheKey).String())
// Get using redis client.
fmt.Println(redis.MustDo(ctx, "GET", cacheKey).String())
// Output:
// value
// value
}
4 Comments
杨佳佳
如果使用redis哨兵模式的话,应该怎么配置
杨佳佳
goframe使用redis缓存时,能支持哨兵模式吗
郭强
底层使用的是
go-redis
组件,该组件是支持哨兵模式的,具体请参考下go-redis
的说明,特别是配置:https://github.com/go-redis/redis云天河
大佬 v1.16.8 后面会支持基于redis的缓存么~