You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
kratos/cache/cache.go

13 lines
312 B

package cache
import (
"context"
"time"
)
// Cache is a generic key value cache interface.
type Cache interface {
Get(ctx context.Context, key string) (interface{}, error)
Put(ctx context.Context, key string, value interface{}, expired time.Duration) error
Delete(ctx context.Context, key string) error
}