jetcache-go icon indicating copy to clipboard operation
jetcache-go copied to clipboard

JetCache-go is a Go cache framework. | 多级缓存 | 异步刷新 | 防穿透 | 指标采集 | 自动降级 | 批量查询 |

Results 1 jetcache-go issues
Sort by recently updated
recently updated
newest added

RT, minimum reproducible code as below lib version - github.com/mgtv-tech/jetcache-go v1.1.8 - github.com/redis/go-redis/v9 v9.6.1 ```golang package main import ( "context" "fmt" "math/rand" "time" cache "github.com/mgtv-tech/jetcache-go" "github.com/mgtv-tech/jetcache-go/remote" "github.com/redis/go-redis/v9" ) func main()...