prometheus/vendor/github.com/hashicorp/golang-lru
Brian Brazil 8ff6938fa4
Update dependencies. (#5449)
Including going to tsdb 0.7.0.

Signed-off-by: Brian Brazil <brian.brazil@robustperception.io>
2019-04-10 18:47:25 +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
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
LICENSE Upgrade k8s client to kubernetes-1.11.0 2018-08-02 10:25:27 +08:00
lru.go Update dependencies. (#5449) 2019-04-10 18:47:25 +01:00
README.md Upgrade k8s client to kubernetes-1.11.0 2018-08-02 10:25:27 +08:00

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()))
}