2021-12-03 03:15:48 +00:00
|
|
|
package cache
|
|
|
|
|
|
|
|
import "time"
|
|
|
|
|
|
|
|
type SetGetKey interface {
|
|
|
|
Set(key string, value interface{}, ttl time.Duration) error
|
|
|
|
Get(key string) (interface{}, bool)
|
2021-12-03 03:32:30 +00:00
|
|
|
Remove(key string)
|
2021-12-03 03:15:48 +00:00
|
|
|
}
|