open-vault/vendor/github.com/hashicorp/golang-lru
Hridoy Roy fa5784d789
Pull in newest consul-template from master and all corresponding dependencies [VAULT-1392] (#10756)
* pull in newest consul template with bugfix and all dependencies

* pull in newest consul template with bugfix and all dependencies

* Rename readme.md to README.md

* add changelog
2021-01-29 12:30:16 -08:00
..
simplelru Bundle OCI Auth method (#7422) 2019-09-04 16:46:00 -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
LICENSE Migrate to built-in Go vendoring. 2016-02-18 15:06:02 -05:00
README.md Migrate to built-in Go vendoring. 2016-02-18 15:06:02 -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 Bundle OCI Auth method (#7422) 2019-09-04 16:46:00 -07:00
lru.go Pull in newest consul-template from master and all corresponding dependencies [VAULT-1392] (#10756) 2021-01-29 12:30:16 -08:00

README.md

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