mirror of
https://github.com/charlienet/go-mixed.git
synced 2025-07-18 08:32:40 +08:00
cache
This commit is contained in:
7
cache/local_cache.go
vendored
Normal file
7
cache/local_cache.go
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
package cache
|
||||
|
||||
type LocalCache interface {
|
||||
Set(key string, data []byte)
|
||||
Get(key string) ([]byte, bool)
|
||||
Del(key string)
|
||||
}
|
Reference in New Issue
Block a user