Something went wrong. Try again.
This repository has no description
Something went wrong. Try again.
203 B · 14 lines
Go
123456789101112131415package cache
import "github.com/redis/go-redis/v9"
type Cache struct { *redis.Client}
func New(addr string) *Cache { rdb := redis.NewClient(&redis.Options{ Addr: addr, }) return &Cache{rdb}}