gocache is a data race-free cache implementation in Go, providing efficient caching capabilities for your applications.
go get -u github.com/yuseferi/gocache
cache := gocache.NewCache(time.Minute * 2) // with 2 minutes interval cleaning expired items
cache.Set("key", "value", time.Minute) // set cache
value, found := cache.Get("key") // retrive cache data
cache.Delete("key") // delete specific key manually
cache.Clear() // clear all cache items ( purge)
size := cache.Size() // get cache size
We strongly believe in open-source ❤️😊. Please feel free to contribute by raising issues and submitting pull requests to make gocache even better!
Released under the GNU GENERAL PUBLIC LICENSE.