Versions in this module Expand all Collapse all v0 v0.23.1 Apr 25, 2019 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