Package: effect
Module: ScopedCache
Retrieves all key-value pairs from the cache as an array. This function only returns entries with successfully resolved values, filtering out any failed lookups or expired entries.
When to use
Use to inspect the currently successful cached key-value pairs without running cache lookups.
Gotchas
Expired entries are removed and their scopes are closed while filtering.
See
keys for retrieving only cached keysvalues for retrieving only cached valuesSignature
declare const entries: <Key, A, E, R>(self: ScopedCache<Key, A, E, R>) => Effect.Effect<Array<[Key, A]>>
Since v4.0.0