* Retrieve a cache entry for the given cache key, if available. Will return * undefined if there's no valid entry, or if the given soft tags are stale.
(cacheKey: string, softTags: string[])
| 45 | * undefined if there's no valid entry, or if the given soft tags are stale. |
| 46 | */ |
| 47 | get(cacheKey: string, softTags: string[]): Promise<undefined | CacheEntry> |
| 48 | |
| 49 | /** |
| 50 | * Store a cache entry for the given cache key. When this is called, the entry |
no outgoing calls