(ctx context.Context, key string)
| 32 | SetWithTTL(ctx context.Context, key string, value T, ttl time.Duration) error |
| 33 | Delete(ctx context.Context, key string) error |
| 34 | Get(ctx context.Context, key string) (T, error) |
| 35 | GetAll(ctx context.Context, selectFunc Matcher) (map[string]T, error) |
| 36 | UpdateTTL(ctx context.Context, key string, ttl time.Duration) error |
| 37 | SetOnEvicted(f func(key string, value T)) |
no outgoing calls