coredns/vendor/github.com/hashicorp/golang-lru
Manuel Alejandro de Brito Fontes 0e8977761d Dep helper (#2151)
* Add dep task to update go dependencies

* Update go dependencies
2018-09-29 23:47:07 +01:00
..
simplelru Dep helper (#2151) 2018-09-29 23:47:07 +01:00
.gitignore plugin/kubernetes: Enable protobuf, Update client api package (#1114) 2017-09-29 15:58:50 -04:00
2q.go Update go dep (#1560) 2018-02-23 20:10:34 +00:00
arc.go Update go dep (#1560) 2018-02-23 20:10:34 +00:00
doc.go Update go dep (#1560) 2018-02-23 20:10:34 +00:00
LICENSE plugin/kubernetes: Enable protobuf, Update client api package (#1114) 2017-09-29 15:58:50 -04:00
lru.go Update go dep (#1560) 2018-02-23 20:10:34 +00:00
README.md plugin/kubernetes: Enable protobuf, Update client api package (#1114) 2017-09-29 15:58:50 -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()))
}