last icon indicating copy to clipboard operation
last copied to clipboard

System memory aware LRU cache in Go

Results 1 last issues
Sort by recently updated
recently updated
newest added

Similar to the standard library syncmap.Map's LoadOrStore, the GetOrPut returns the existing value for the key if present. Otherwise, it stores and returns the given value. The bool result is...