ingress-nginx-helm/vendor/github.com/hashicorp/golang-lru
Manuel de Brito Fontes bf5616c65b Replace godep with dep
2017-10-06 17:26:14 -03:00
..
simplelru Replace godep with dep 2017-10-06 17:26:14 -03:00
.gitignore Update golang dependencies 2017-05-20 20:11:38 -04:00
2q.go Update golang dependencies 2017-05-20 20:11:38 -04:00
2q_test.go Replace godep with dep 2017-10-06 17:26:14 -03:00
arc.go Update golang dependencies 2017-05-20 20:11:38 -04:00
arc_test.go Replace godep with dep 2017-10-06 17:26:14 -03:00
LICENSE Update golang dependencies 2017-05-20 20:11:38 -04:00
lru.go Update golang dependencies 2017-05-20 20:11:38 -04:00
lru_test.go Replace godep with dep 2017-10-06 17:26:14 -03:00
README.md Update golang dependencies 2017-05-20 20:11:38 -04: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()))
}