Cache overview
A Contextual wrapper around @effect/io/Cache
Added in v1.0.0
Table of contents
constructors
Cache
Construct a Cache implementation to be utilized from the Effect Context.
Signature
export declare function Cache<K, A, E = never>(): {
<const I extends IdentifierFactory<any>>(identifier: I): Cache<IdentifierOf<I>, K, A, E>
<const I>(identifier: I): Cache<IdentifierOf<I>, K, A, E>
}
Added in v1.0.0
models
Cache (interface)
A Contextual wrapper around @effect/io/Cache
Signature
export interface Cache<I, K, A, E> extends Tag<I, C.Cache<K, A, E>> {
readonly get: (key: K) => Effect<A, E, I>
readonly getEither: (key: K) => Effect<Either<A, A>, E, I>
readonly refresh: (key: K) => Effect<void, E, I>
readonly set: (key: K, value: A) => Effect<void, never, I>
readonly make: <R>(options: {
readonly capacity: number
readonly timeToLive: DurationInput
readonly lookup: C.Lookup<K, A, E, R>
}) => Layer.Layer<I, never, R>
readonly makeWith: <R>(options: {
readonly capacity: number
readonly lookup: C.Lookup<K, A, E, R>
readonly timeToLive: (exit: Exit<A, E>) => DurationInput
}) => Layer.Layer<I, never, R>
}
Added in v1.0.0