1
0
mirror of https://github.com/go-micro/go-micro.git synced 2025-06-30 22:33:49 +02:00
Files
go-micro/plugins/cache/redis/redis.go
Johnson C 7a6a2b6373 feat: redis implementation of cache (#2513)
* feat: redis implementation of cache

* Revert "feat: redis implementation of cache"

This reverts commit 4b3f25c1fc.

* feat: redis implementation of cache
2022-06-21 20:05:00 +01:00

75 lines
1.5 KiB
Go

package redis
import (
"context"
"time"
"github.com/go-redis/redis/v8"
"go-micro.dev/v4/cache"
"go-micro.dev/v4/cmd"
)
func init() {
cmd.DefaultCaches["redis"] = NewCache
}
// NewCache returns a new redis cache.
func NewCache(opts ...cache.Option) cache.Cache {
options := cache.NewOptions(opts...)
addr := "redis://127.0.0.1:6379"
if len(options.Address) > 0 {
addr = options.Address
}
redisOptions, err := redis.ParseURL(addr)
if err != nil {
redisOptions = &redis.Options{
Addr: addr,
Password: "",
DB: 0,
}
}
return &redisCache{
opts: options,
client: redis.NewClient(redisOptions),
}
}
type redisCache struct {
opts cache.Options
client *redis.Client
}
func (c *redisCache) Get(ctx context.Context, key string) (interface{}, time.Time, error) {
val, err := c.client.Get(ctx, key).Bytes()
if err != nil && err == redis.Nil {
return nil, time.Time{}, cache.ErrKeyNotFound
} else if err != nil {
return nil, time.Time{}, err
}
dur, err := c.client.TTL(ctx, key).Result()
if err != nil {
return nil, time.Time{}, err
}
if dur == -1 {
return val, time.Unix(1<<63-1, 0), nil
}
if dur == -2 {
return val, time.Time{}, cache.ErrItemExpired
}
return val, time.Now().Add(dur), nil
}
func (c *redisCache) Put(ctx context.Context, key string, val interface{}, dur time.Duration) error {
return c.client.Set(ctx, key, val, dur).Err()
}
func (c *redisCache) Delete(ctx context.Context, key string) error {
return c.client.Del(ctx, key).Err()
}
func (m *redisCache) String() string {
return "redis"
}