Key tries to find the cache key for the requested content or returns empty.
(c context.Context)
| 13 | type FilesStore interface { |
| 14 | // Key tries to find the cache key for the requested content or returns empty. |
| 15 | Key(c context.Context) (key string, d digest.Digest, err error) |
| 16 | |
| 17 | // Open opens the requested file and starts prefetching it. It also returns the size of the file. |
| 18 | Open(c context.Context) (File, error) |