File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,9 @@ go-generics-cache is an in-memory key:value store/cache that is suitable for app
21
21
- Using this algorithm the cache behaves in the same way as a [ FIFO queue] ( https://en.wikipedia.org/wiki/FIFO_(computing_and_electronics) ) .
22
22
- The cache evicts the blocks in the order they were added, without any regard to how often or how many times they were accessed before.
23
23
- See [examples](https://github.com/Code-Hex/go-generics-cache/blob/main/fifo/example_test.go)
24
+ - Most recently used (MRU)
25
+ - In contrast to Least Recently Used (LRU), MRU discards the most recently used items first.
26
+ - See [examples](https://github.com/Code-Hex/go-generics-cache/blob/main/mru/example_test.go)
24
27
25
28
## Requirements
26
29
You can’t perform that action at this time.
0 commit comments