cache.go 290 B

12345678910111213
  1. package cache
  2. import (
  3. "context"
  4. "time"
  5. )
  6. type Cache interface {
  7. Set(ctx context.Context, key string, value any)
  8. SetEx(ctx context.Context, key string, value any, expire time.Duration)
  9. Get(ctx context.Context, key string) (value any, ok bool)
  10. Del(ctx context.Context, key string)
  11. }