RichΛrd 0babdad17b
chore: upgrade go-waku to v0.5 (#3213)
* chore: upgrade go-waku to v0.5
* chore: add println and logs to check what's being stored in the enr, and preemptively delete the multiaddr field (#3219)
* feat: add wakuv2 test (#3218)
2023-02-22 17:58:17 -04:00
..
2021-07-20 10:57:38 +02:00
2023-02-22 17:58:17 -04:00
2019-06-12 13:12:00 +02:00
2021-07-20 10:57:38 +02:00
2021-07-20 10:57:38 +02:00
2021-07-20 10:57:38 +02:00
2019-06-12 13:12:00 +02:00
2021-07-20 10:57:38 +02:00
2019-06-12 13:12:00 +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()))
}