You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gocache/go_cache.go

44 lines
814 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package gocache
import (
"time"
)
// GoCacheConfig 配置
type GoCacheConfig struct {
expiration time.Duration // 过期时间
}
// GoCache https://github.com/patrickmn/go-cache
type GoCache struct {
GoCacheConfig
db *Go // 驱动
GetterInterface GttInterfaceFunc // 不存在的操作
}
// NewCache 实例化
func (c *Go) NewCache(config *GoCacheConfig) *GoCache {
app := &GoCache{}
app.expiration = config.expiration
app.db = c
return app
}
// GetInterface 缓存操作
func (gc *GoCache) GetInterface(key string) (ret interface{}) {
f := func() interface{} {
return gc.GetterInterface()
}
// 如果不存在则调用GetterInterface
ret, found := gc.db.Get(key)
if found == false {
gc.db.Set(key, f(), gc.expiration)
ret, _ = gc.db.Get(key)
}
return
}