(ctx context.Context, key []string, buf [][]byte)
| 39 | // when they returned an error. |
| 40 | type Cache interface { |
| 41 | Store(ctx context.Context, key []string, buf [][]byte) |
| 42 | MaxItemSize() int |
| 43 | // TODO: both cached backend clients support deletion. Should we implement? |
| 44 | // Remove(ctx context.Context, key []string) |
no outgoing calls