ingress-nginx-helm/vendor/github.com/hashicorp/golang-lru
Manuel Alejandro de Brito Fontes 341d64b652
Update go dependencies (#4524)
2019-09-02 21:30:28 -04:00
..
simplelru Update go dependencies 2018-09-22 14:54:24 -03:00
.gitignore Update golang dependencies 2017-05-20 20:11:38 -04:00
2q.go Update go dependencies 2018-05-26 16:27:45 -04:00
arc.go Update go dependencies 2018-05-26 16:27:45 -04:00
doc.go Update go dependencies 2018-05-26 16:27:45 -04:00
go.mod Update go dependencies 2018-09-22 14:54:24 -03:00
LICENSE Update golang dependencies 2017-05-20 20:11:38 -04:00
lru.go Update go dependencies (#4524) 2019-09-02 21:30:28 -04: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()))
}