open-vault/vendor/github.com/hashicorp/golang-lru
Jeff Mitchell 9ebc57581d
Switch to go modules (#6585)
* Switch to go modules

* Make fmt
2019-04-13 03:44:06 -04:00
..
simplelru Update Deps (#5454) 2018-10-03 09:55:26 -07:00
.gitignore Switch to go modules (#6585) 2019-04-13 03:44:06 -04:00
2q.go Bump deps 2018-02-10 19:29:52 -05:00
arc.go Bump deps 2018-02-10 19:29:52 -05:00
doc.go Bump deps 2018-02-10 19:29:52 -05:00
go.mod Update Deps (#5454) 2018-10-03 09:55:26 -07:00
LICENSE Migrate to built-in Go vendoring. 2016-02-18 15:06:02 -05:00
lru.go Update golang-lru dep which has a minor speedbump in the critical path 2019-02-27 17:51:06 -05:00
README.md Migrate to built-in Go vendoring. 2016-02-18 15:06:02 -05: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()))
}