Package: effect
Module: ScopedCache
Retrieves all successfully cached values from the cache, excluding failed lookups and expired entries.
When to use
Use to inspect currently successful cached values without running cache lookups.
Gotchas
Expired entries are removed and their scopes are closed while filtering.
See
entries for retrieving successful cached key-value pairskeys for retrieving only cached keysSignature
declare const values: <Key, A, E, R>(self: ScopedCache<Key, A, E, R>) => Effect.Effect<Array<A>>
Since v4.0.0