type github.com/hashicorp/golang-lru/v2/simplelru.LRUCache (interface)

Method Implmentations

Add(key K, value V) bool
Contains(key K) (ok bool)
Get(key K) (value V, ok bool)
GetOldest() (K, V, bool)
Keys() []K
Len() int
Peek(key K) (value V, ok bool)
Remove(key K) bool
RemoveOldest() (K, V, bool)
Values() []V