summaryrefslogtreecommitdiff
path: root/pkg/cache/interface.go
blob: 606f50f1a34a2606c633a232fa758b662bdf5a17 (plain)
1
2
3
4
5
6
7
8
9
package cache

type Cache interface {
	Get(key string) ([]byte, error)
	Set(key string, value []byte)
	Expire(key string, exp int64)
	GetAll() (resp map[string][]byte)
	RemoveKey(key string)
}