(ctx context.Context, key []string, buf [][]byte)
| 19 | // when they returned an error. |
| 20 | type Cache interface { |
| 21 | Store(ctx context.Context, key []string, buf [][]byte) |
| 22 | Fetch(ctx context.Context, keys []string) (found []string, bufs [][]byte, missing []string) |
| 23 | Stop() |
| 24 | } |
no outgoing calls