1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

bump hashicorp/golang-lru v0.5.1

0fb14efe8c...7087cb70de

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn 2019-04-13 22:28:00 +02:00
parent 9b2eaa8a5d
commit 8fa04b3a06
No known key found for this signature in database
GPG key ID: 76698F39D527CE8C
2 changed files with 23 additions and 24 deletions

View file

@ -140,7 +140,7 @@ golang.org/x/crypto 38d8ce5564a5b71b2e3a00553993
golang.org/x/time fbb02b2291d28baffd63558aa44b4b56f178d650 golang.org/x/time fbb02b2291d28baffd63558aa44b4b56f178d650
github.com/hashicorp/go-memdb cb9a474f84cc5e41b273b20c6927680b2a8776ad github.com/hashicorp/go-memdb cb9a474f84cc5e41b273b20c6927680b2a8776ad
github.com/hashicorp/go-immutable-radix 826af9ccf0feeee615d546d69b11f8e98da8c8f1 git://github.com/tonistiigi/go-immutable-radix.git github.com/hashicorp/go-immutable-radix 826af9ccf0feeee615d546d69b11f8e98da8c8f1 git://github.com/tonistiigi/go-immutable-radix.git
github.com/hashicorp/golang-lru 0fb14efe8c47ae851c0034ed7a448854d3d34cf3 github.com/hashicorp/golang-lru 7087cb70de9f7a8bc0a10c375cb0d2280a8edf9c # v0.5.1
github.com/coreos/pkg 3ac0863d7acf3bc44daf49afef8919af12f704ef # v3 github.com/coreos/pkg 3ac0863d7acf3bc44daf49afef8919af12f704ef # v3
github.com/pivotal-golang/clock 3fd3c1944c59d9742e1cd333672181cd1a6f9fa0 github.com/pivotal-golang/clock 3fd3c1944c59d9742e1cd333672181cd1a6f9fa0

View file

@ -1,37 +1,36 @@
package simplelru package simplelru
// LRUCache is the interface for simple LRU cache. // LRUCache is the interface for simple LRU cache.
type LRUCache interface { type LRUCache interface {
// Adds a value to the cache, returns true if an eviction occurred and // Adds a value to the cache, returns true if an eviction occurred and
// updates the "recently used"-ness of the key. // updates the "recently used"-ness of the key.
Add(key, value interface{}) bool Add(key, value interface{}) bool
// Returns key's value from the cache and // Returns key's value from the cache and
// updates the "recently used"-ness of the key. #value, isFound // updates the "recently used"-ness of the key. #value, isFound
Get(key interface{}) (value interface{}, ok bool) Get(key interface{}) (value interface{}, ok bool)
// Check if a key exsists in cache without updating the recent-ness. // Check if a key exsists in cache without updating the recent-ness.
Contains(key interface{}) (ok bool) Contains(key interface{}) (ok bool)
// Returns key's value without updating the "recently used"-ness of the key. // Returns key's value without updating the "recently used"-ness of the key.
Peek(key interface{}) (value interface{}, ok bool) Peek(key interface{}) (value interface{}, ok bool)
// Removes a key from the cache. // Removes a key from the cache.
Remove(key interface{}) bool Remove(key interface{}) bool
// Removes the oldest entry from cache. // Removes the oldest entry from cache.
RemoveOldest() (interface{}, interface{}, bool) RemoveOldest() (interface{}, interface{}, bool)
// Returns the oldest entry from the cache. #key, value, isFound // Returns the oldest entry from the cache. #key, value, isFound
GetOldest() (interface{}, interface{}, bool) GetOldest() (interface{}, interface{}, bool)
// Returns a slice of the keys in the cache, from oldest to newest. // Returns a slice of the keys in the cache, from oldest to newest.
Keys() []interface{} Keys() []interface{}
// Returns the number of items in the cache. // Returns the number of items in the cache.
Len() int Len() int
// Clear all cache entries // Clear all cache entries
Purge() Purge()
} }