名称 最后更新
..
simplelru 正在载入提交数据...
.gitignore 正在载入提交数据...
2q.go 正在载入提交数据...
LICENSE 正在载入提交数据...
README.md 正在载入提交数据...
arc.go 正在载入提交数据...
doc.go 正在载入提交数据...
go.mod 正在载入提交数据...
lru.go 正在载入提交数据...

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