Versions in this module Expand all Collapse all v2 v2.1.0 Nov 8, 2024 v2.0.0 Jan 22, 2024 Changes in this version + type Cache interface + Lookup func(key string) interface{} + Reset func() + Save func(key string, value interface{}) + type LRUCache struct + func NewLRUCache(size int, timeout time.Duration) *LRUCache + func (l *LRUCache) Lookup(key string) interface{} + func (l *LRUCache) Reset() + func (l *LRUCache) Save(key string, value interface{})