gocache icon indicating copy to clipboard operation
gocache copied to clipboard

☔️ A complete Go cache library that brings you multiple ways of managing your caches

Results 56 gocache issues
Sort by recently updated
recently updated
newest added

I wrote and maintain [pagoda](https://github.com/mikestefanello/pagoda), a rapid, full-stack web development starter kit. I included _gocache_ to provide a flexible way to handle caching that wouldn't have to be changed if...

**Description** Hi, Thank you for making the awesome library first. [The type casting code](https://github.com/eko/gocache/blob/master/cache/cache.go#L40) is wrong for bigcache with string type. Because bigcache always returns `[]byte` type(refer [here](https://github.com/eko/gocache/blob/master/store/bigcache.go#L42)) even though...

I installed the library as documented `go get github.com/eko/gocache/v3` then I installed the in-memory store `go get github.com/patrickmn/go-cache` And I have a code without any syntax error like this ```...

Please describe the a concise description and fill out the details below. It will help others efficiently understand your request and get to an answer instead of repeated back and...

Unable to build go application on go version 1.18.2 on MacOS and Ubuntu My guess is that problem is in this library: https://github.com/XiaoMi/pegasus-go-client which is used in github.com/eko/gocache/v3/store **Steps for...

**Steps for Reproduction** Currently, the prometheus metrics implementation for the cache only supports the use of the default registerer. This introduces global state into peoples applications and makes it difficult...

I tried ```go get -u github.com/eko/gocache/v2/cache ``` And got ``` # github.com/XiaoMi/pegasus-go-client/idl/base ..\..\go\pkg\mod\github.com\!xiao!mi\[email protected]\idl\base\blob.go:18:31: not enough arguments in call to iprot.ReadBinary have () want (context.Context) ..\..\go\pkg\mod\github.com\!xiao!mi\[email protected]\idl\base\blob.go:27:26: not enough arguments in call...

`github.com/go-redis/redis/v8` privide UniversalClient. There is basically no difference between the two redis stores. So i think the RedisClusterClientInterface interface can be removed. Users should not modify the code when switching...

Hello author: Thank you very much for open sourcing the gocache project, it will be very helpful to me; however I don't know much about gochache, I have encountered various...