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

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