mirror of
https://github.com/charlienet/go-mixed.git
synced 2025-07-17 16:12:42 +08:00
10 lines
179 B
Go
10 lines
179 B
Go
package cache
|
|
|
|
import "time"
|
|
|
|
type MemCache interface {
|
|
Get(key string) ([]byte, error)
|
|
Set(key string, entry []byte, expire time.Duration) error
|
|
Delete(key ...string) error
|
|
}
|