mirror of
https://github.com/charlienet/go-mixed.git
synced 2025-07-17 16:12:42 +08:00
11 lines
200 B
Go
11 lines
200 B
Go
package cache
|
|
|
|
import "time"
|
|
|
|
type DistributdCache interface {
|
|
Get(key string, out any) error
|
|
Set(key string, value any, expiration time.Duration) error
|
|
Delete(key ...string) error
|
|
Ping() error
|
|
}
|