lrucache
lrucache copied to clipboard
Light-weight in-memory LRU (object) cache library for Go
can't test this right now but I suspect that a panic from within a OnMiss handler that is wrapped in ThrottleConcurrency will not "release the lock", so to speak. the
readme file needs hard numbers on performance of lrucache, compared to that of map[string]interface{}
Synchronizing the cache (waiting for all pending operations to complete) is a nice thing for the unit tests, but I never need it outside a testing scenario. Should it be...