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/common.go

14 lines
254 B

package gocache
import "time"
var (
DefaultExpiration = time.Minute * 30 // 默认过期时间
)
// GttStringFunc String缓存结构
type GttStringFunc func() string
// GttInterfaceFunc Interface缓存结构
type GttInterfaceFunc func() interface{}