(ctx context.Context, key string, fetch func(ctx context.Context) (V, error))
| 25 | |
| 26 | type Cache[V any] interface { |
| 27 | Get(ctx context.Context, key string, fetch func(ctx context.Context) (V, error)) (V, error) |
| 28 | GetLink(ctx context.Context, key string, fetch func(ctx context.Context) (V, error), link ...string) (V, error) |
| 29 | Del(ctx context.Context, key ...string) |
| 30 | DelLocal(ctx context.Context, key ...string) |
no outgoing calls