blob: 92d70934d632fc039f2f4b5365097f41f117a583 [file] [log] [blame]
Scott Baker2d897982019-09-24 11:50:08 -07001package simplelru
2
3// LRUCache is the interface for simple LRU cache.
4type LRUCache interface {
5 // Adds a value to the cache, returns true if an eviction occurred and
6 // updates the "recently used"-ness of the key.
7 Add(key, value interface{}) bool
8
9 // Returns key's value from the cache and
10 // updates the "recently used"-ness of the key. #value, isFound
11 Get(key interface{}) (value interface{}, ok bool)
12
Scott Baker8487c5d2019-10-18 12:49:46 -070013 // Checks if a key exists in cache without updating the recent-ness.
Scott Baker2d897982019-09-24 11:50:08 -070014 Contains(key interface{}) (ok bool)
15
16 // Returns key's value without updating the "recently used"-ness of the key.
17 Peek(key interface{}) (value interface{}, ok bool)
18
19 // Removes a key from the cache.
20 Remove(key interface{}) bool
21
22 // Removes the oldest entry from cache.
23 RemoveOldest() (interface{}, interface{}, bool)
24
25 // Returns the oldest entry from the cache. #key, value, isFound
26 GetOldest() (interface{}, interface{}, bool)
27
28 // Returns a slice of the keys in the cache, from oldest to newest.
29 Keys() []interface{}
30
31 // Returns the number of items in the cache.
32 Len() int
33
Scott Baker8487c5d2019-10-18 12:49:46 -070034 // Clears all cache entries.
Scott Baker2d897982019-09-24 11:50:08 -070035 Purge()
Scott Baker8487c5d2019-10-18 12:49:46 -070036
37 // Resizes cache, returning number evicted
38 Resize(int) int
Scott Baker2d897982019-09-24 11:50:08 -070039}