Versions in this module Expand all Collapse all v2 v2.8.1 Jan 31, 2025 v2.8.0 Jan 26, 2025 Changes in this version + func CtxWithCache(ctx context.Context, cache Cache) context.Context + type Cache interface + Get func(k any) (any, bool) + Reset func() + Set func(k, v any) + func FromCtx(ctx context.Context) Cache + type DummyCache struct + func (DummyCache) Get(k any) (any, bool) + func (DummyCache) Reset() + func (DummyCache) Set(k, v any)