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

16 lines
279 B

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