5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-11-09 16:50:30 +00:00
matterbridge/vendor/github.com/hashicorp/golang-lru
2023-01-28 22:57:53 +01:00
..
simplelru Update dependencies (#1951) 2023-01-28 22:57:53 +01:00
.gitignore Use mod vendor for vendored directory (backwards compatible) 2018-08-06 21:47:05 +02:00
.golangci.yml Update dependencies (#1951) 2023-01-28 22:57:53 +01:00
2q.go Update dependencies (#1951) 2023-01-28 22:57:53 +01:00
arc.go Update dependencies (#1951) 2023-01-28 22:57:53 +01:00
doc.go Update direct dependencies where possible 2018-11-25 21:21:04 +01:00
LICENSE Update dependencies (#1951) 2023-01-28 22:57:53 +01:00
lru.go Update dependencies (#1951) 2023-01-28 22:57:53 +01:00
README.md Update dependencies (#1951) 2023-01-28 22:57:53 +01:00
testing.go Update dependencies (#1951) 2023-01-28 22:57:53 +01: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()))
}