status-go/vendor/github.com/hashicorp/golang-lru
Siddarth Kumar 926f6a3c72 Revert "test: bump go-libp2p"
This reverts commit d0ca4447c6.
2024-01-18 20:29:33 +00:00
..
simplelru Upgrade go-ens 2021-07-20 10:57:38 +02:00
v2 Revert "test: bump go-libp2p" 2024-01-18 20:29:33 +00:00
.gitignore migrate to go 1.12 and go modules 2019-06-12 13:12:00 +02:00
.golangci.yml Upgrade go-ens 2021-07-20 10:57:38 +02:00
2q.go Upgrade go-ens 2021-07-20 10:57:38 +02:00
LICENSE Initial refactoring + vendor update (after rebase) 2016-09-15 06:12:25 +03:00
README.md migrate to go 1.12 and go modules 2019-06-12 13:12:00 +02:00
arc.go Upgrade go-ens 2021-07-20 10:57:38 +02:00
doc.go migrate to go 1.12 and go modules 2019-06-12 13:12:00 +02:00
lru.go Upgrade go-ens 2021-07-20 10:57:38 +02: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()))
}