cache icon indicating copy to clipboard operation
cache copied to clipboard

🗃 Generic cache use and cache manage. Provide a unified usage API by packaging various commonly used drivers. Support File, Memory, Redis, Memcached and more. Go 通用的缓存使用库,通过包装各种常用的...

Results 6 cache issues
Sort by recently updated
recently updated
newest added

Bumps google.golang.org/protobuf from 1.28.1 to 1.33.0. [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=google.golang.org/protobuf&package-manager=go_modules&previous-version=1.28.1&new-version=1.33.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a...

dependencies
go

Bumps [github.com/stretchr/testify](https://github.com/stretchr/testify) from 1.8.4 to 1.9.0. Release notes Sourced from github.com/stretchr/testify's releases. v1.9.0 What's Changed Fix Go modules version by @​SuperQ in stretchr/testify#1394 Document that require is not safe to...

dependencies
go

I got panic when try to get cache value with multiple runs. ```txt panic: interface conversion: interface {} is []interface {}, not main.Users ``` Code to reproduce. Try this code...

bug

Bumps [go.etcd.io/bbolt](https://github.com/etcd-io/bbolt) from 1.3.9 to 1.3.10. Release notes Sourced from go.etcd.io/bbolt's releases. v1.3.10 See the CHANGELOG for more details. Commits 014b028 Merge pull request #744 from ahrtr/cursor_20240502 2d48e1d Ensure a...

dependencies
go

like https://github.com/Code-Hex/go-generics-cache https://github.com/jellydator/ttlcache https://github.com/mdaliyan/icache **New a CacheT[V] / CacheKvT[K,V] operator class** ```go type CacheT[V any] interface { Has(key string) bool Get(key string) (V, bool) Set(key string, val V, ttl time.Duration)...

enhancement