5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-20 17:12:31 +00:00
matterbridge/vendor/github.com/hashicorp/golang-lru
2018-11-25 21:21:04 +01:00
..
simplelru Update direct dependencies where possible 2018-11-25 21:21:04 +01:00
.gitignore Use mod vendor for vendored directory (backwards compatible) 2018-08-06 21:47:05 +02:00
2q.go Update direct dependencies where possible 2018-11-25 21:21:04 +01:00
arc.go Update direct dependencies where possible 2018-11-25 21:21:04 +01:00
doc.go Update direct dependencies where possible 2018-11-25 21:21:04 +01:00
go.mod Update direct dependencies where possible 2018-11-25 21:21:04 +01:00
LICENSE Add vendor (github.com/hashicorp/golang-lru) 2017-07-25 23:56:12 +02:00
lru.go Update direct dependencies where possible 2018-11-25 21:21:04 +01:00
README.md Use mod vendor for vendored directory (backwards compatible) 2018-08-06 21:47:05 +02: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()))
}