Skip to content

AImager/gocache

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GoCache

🇬🇧 English | 🇨🇳 中文

Install

go get github.com/AImager/gocache

Usage

package main

import (
	"context"
	"fmt"

	cache "github.com/AImager/gocache"
	"github.com/AImager/gocache/config"
)

func main() {
	a, b := 1, 3
	client, _ := cache.GetClient(config.ClientConfig{
		Addr:       "127.0.0.1:6379",
		ClientType: config.Goredis,
	})
	c := &cache.Cache{Client: client}

	// decorate get method, auto set cache
	decoratedGetFunc := getDb
	c.CacheWithFunc(context.TODO(), config.CacheConfig{
		Key:    fmt.Sprintf("test_cache:a:%d:b:%d", a, b),
		Expire: 300,
	}, &decoratedGetFunc, getDb)
	decoratedGetFunc(context.TODO(), a, b)

	// decorate update method, auto del cache
	decoratedUpdateFunc := updateDb
	c.CacheDelWithFunc(context.TODO(), config.CacheDelConfig{
		Key: fmt.Sprintf("test_cache:a:%d:b:%d", a, b),
	}, &decoratedUpdateFunc, updateDb)
	decoratedUpdateFunc(context.TODO(), a, b)
}

func getDb(ctx context.Context, a int, b int) (c int, err error) {
	return 1, nil
}

func updateDb(ctx context.Context, a int, b int) (err error) {
	return nil
}

Contributing

PRs accepted.

License

MIT © AImager

About

🗄️ golang auto cache manager based on aop

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages