mirror of
https://github.com/astaxie/beego.git
synced 2025-07-10 03:20:19 +00:00
fix #91
This commit is contained in:
2
cache/cache.go
vendored
2
cache/cache.go
vendored
@ -8,6 +8,8 @@ type Cache interface {
|
||||
Get(key string) interface{}
|
||||
Put(key string, val interface{}, timeout int64) error
|
||||
Delete(key string) error
|
||||
Incr(key string) error
|
||||
Decr(key string) error
|
||||
IsExist(key string) bool
|
||||
ClearAll() error
|
||||
StartAndGC(config string) error
|
||||
|
Reference in New Issue
Block a user