kilo/vendor/github.com/hashicorp/golang-lru
leonnicolas 70d2751030
bumg golang 1.15 -> 1.17
Signed-off-by: leonnicolas <leonloechner@gmx.de>
2021-09-30 17:47:47 +02:00
..
simplelru init 2019-01-18 02:50:10 +01:00
.gitignore init 2019-01-18 02:50:10 +01:00
2q.go init 2019-01-18 02:50:10 +01:00
LICENSE init 2019-01-18 02:50:10 +01:00
README.md init 2019-01-18 02:50:10 +01:00
arc.go init 2019-01-18 02:50:10 +01:00
doc.go init 2019-01-18 02:50:10 +01:00
lru.go go.mod: bump client-go and api machinerie 2021-05-15 12:12:50 +02:00

README.md

golang-lru

This provides the lru package which implements a fixed-size thread safe LRU cache. It is based on the cache in Groupcache.

Documentation

Full docs are available on Godoc

Example

Using the LRU is very simple:

l, _ := New(128)
for i := 0; i < 256; i++ {
    l.Add(i, nil)
}
if l.Len() != 128 {
    panic(fmt.Sprintf("bad len: %v", l.Len()))
}