You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

README.md 455 B

12345678910111213141516171819202122232425
  1. golang-lru
  2. ==========
  3. This provides the `lru` package which implements a fixed-size
  4. thread safe LRU cache. It is based on the cache in Groupcache.
  5. Documentation
  6. =============
  7. Full docs are available on [Godoc](http://godoc.org/github.com/hashicorp/golang-lru)
  8. Example
  9. =======
  10. Using the LRU is very simple:
  11. ```go
  12. l, _ := New(128)
  13. for i := 0; i < 256; i++ {
  14. l.Add(i, nil)
  15. }
  16. if l.Len() != 128 {
  17. panic(fmt.Sprintf("bad len: %v", l.Len()))
  18. }
  19. ```