MCPcopy
hub / github.com/dropbox/godropbox / concurrentLruCacheImp

Struct concurrentLruCacheImp

container/concurrent/lrucache.go:34–37  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

32}
33
34type concurrentLruCacheImp struct {
35 cache *lrucache.LRUCache
36 lock sync.RWMutex
37}
38
39func NewLRUCache(size int) LRUCache {
40 cache := lrucache.New(size)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected