package
0.22.3
Repository: https://github.com/faabiosr/cachego.git
Documentation: pkg.go.dev

# README

Cachego - Redis driver

The drivers uses go-redis to store the cache data.

Usage

package main

import (
	"log"
	"time"

	rd "github.com/redis/go-redis/v9"

	"github.com/faabiosr/cachego/redis"
)

func main() {
	cache := redis.New(
		rd.NewClient(&rd.Options{
			Addr: ":6379",
		}),
	)

	if err := cache.Save("user_id", "1", 10*time.Second); err != nil {
		log.Fatal(err)
	}

	id, err := cache.Fetch("user_id")
	if err != nil {
		log.Fatal(err)
	}

	log.Printf("user id: %s \n", id)
}

# Functions

New creates an instance of Redis cache driver.