prometheus/vendor/github.com/hashicorp/golang-lru
Simon Pasquier c706b416bd vendor: run 'go mod vendor' from scratch
Signed-off-by: Simon Pasquier <spasquie@redhat.com>
2018-10-29 17:25:43 +01:00
..
simplelru vendor: run 'go mod vendor' from scratch 2018-10-29 17:25:43 +01:00
.gitignore vendor: run 'go mod vendor' from scratch 2018-10-29 17:25:43 +01:00
2q.go Upgrade k8s client to kubernetes-1.11.0 2018-08-02 10:25:27 +08:00
LICENSE Upgrade k8s client to kubernetes-1.11.0 2018-08-02 10:25:27 +08:00
README.md Upgrade k8s client to kubernetes-1.11.0 2018-08-02 10:25:27 +08:00
arc.go Upgrade k8s client to kubernetes-1.11.0 2018-08-02 10:25:27 +08:00
doc.go Upgrade k8s client to kubernetes-1.11.0 2018-08-02 10:25:27 +08:00
go.mod vendor: run 'go mod vendor' from scratch 2018-10-29 17:25:43 +01:00
lru.go Upgrade k8s client to kubernetes-1.11.0 2018-08-02 10:25:27 +08: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()))
}