Versions in this module Expand all Collapse all v1 v1.13.12 Feb 9, 2025 Changes in this version + type Cache struct + MaxEntries int + OnEvicted func(key Key, value interface{}) + func New(maxEntries int) *Cache + func (c *Cache) Add(key Key, value interface{}) + func (c *Cache) Clear() + func (c *Cache) Get(key Key) (value interface{}, ok bool) + func (c *Cache) Len() int + func (c *Cache) Remove(key Key) + func (c *Cache) RemoveOldest() + type Key interface