thumbnail/vendor/github.com/hashicorp/golang-lru
mappu 676a71f527 track vendor/github.com/hashicorp/golang-lru (MPL) 2016-11-18 20:02:00 +13:00
..
simplelru track vendor/github.com/hashicorp/golang-lru (MPL) 2016-11-18 20:02:00 +13:00
.gitignore track vendor/github.com/hashicorp/golang-lru (MPL) 2016-11-18 20:02:00 +13:00
2q.go track vendor/github.com/hashicorp/golang-lru (MPL) 2016-11-18 20:02:00 +13:00
2q_test.go track vendor/github.com/hashicorp/golang-lru (MPL) 2016-11-18 20:02:00 +13:00
LICENSE track vendor/github.com/hashicorp/golang-lru (MPL) 2016-11-18 20:02:00 +13:00
README.md track vendor/github.com/hashicorp/golang-lru (MPL) 2016-11-18 20:02:00 +13:00
arc.go track vendor/github.com/hashicorp/golang-lru (MPL) 2016-11-18 20:02:00 +13:00
arc_test.go track vendor/github.com/hashicorp/golang-lru (MPL) 2016-11-18 20:02:00 +13:00
lru.go track vendor/github.com/hashicorp/golang-lru (MPL) 2016-11-18 20:02:00 +13:00
lru_test.go track vendor/github.com/hashicorp/golang-lru (MPL) 2016-11-18 20:02:00 +13: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()))
}