Versions in this module Expand all Collapse all v0 v0.1.1 Mar 23, 2023 v0.1.0 Mar 9, 2023 Changes in this version + type Cache struct + func New(expiration time.Duration, fetch FetchFunc[O]) *Cache[O] + func (c *Cache[O]) Get(ctx context.Context, key any) (O, error) + type FetchFunc func(ctx context.Context, key any) (O, error)