Versions in this module Expand all Collapse all v0 v0.0.3 Sep 13, 2023 Changes in this version type Memoizer + func (m *Memoizer[T]) Clear(ctx context.Context) error + func (m *Memoizer[T]) Delete(ctx context.Context, key any) error v0.0.2 Sep 13, 2023 Changes in this version + type Memoizer struct + func NewMemoizer[T any](cache *cache.Cache[T]) *Memoizer[T] + func (m *Memoizer[T]) Memoize(ctx context.Context, key string, fn func(context.Context) (T, error)) (T, error)