* Computes the value associated with the specified key, with the lookup * function, and puts it in the cache. The difference between this and * `get` method is that `refresh` triggers (re)computation of the value * without invalidating it in the cache, so any request to the associated *
(key: Key)
| 82 | * lookup function, disregarding the last `Error`. |
| 83 | */ |
| 84 | refresh(key: Key): Effect.Effect<void, Error> |
| 85 | |
| 86 | /** |
| 87 | * Associates the specified value with the specified key in the cache. |
no outgoing calls
no test coverage detected