Set stores a completed response in the cache under the given key. This should clear any in-progress state for the same key.
(key string, entry domain.CacheEntry)
| 20 | // Set stores a completed response in the cache under the given key. |
| 21 | // This should clear any in-progress state for the same key. |
| 22 | Set(key string, entry domain.CacheEntry) |
| 23 | |
| 24 | // SetInProgressIfNotExists marks that a request for this key is currently being processed. |
| 25 | // Used to prevent duplicate upstream requests (coalescing). |
no outgoing calls
no test coverage detected