jetcache icon indicating copy to clipboard operation
jetcache copied to clipboard

JetCache is a Java cache framework.

Results 222 jetcache issues
Sort by recently updated
recently updated
newest added

值序列化有计划对fury提供支持吗 https://github.com/alipay/fury

现在项目里是切分数据源的,jetcache是不是暂时不支持per数据源的缓存。比如缓存key动态拼上当前数据源

如题,目前感觉的功能感觉无法同时支持故障转移+读写分离。

需要的时候就做。

enhancement

希望能够支持如下方式使用: ``` public interface UserService { @Cached(name="userCache.", key="#userId", expire = 3600) Mono getUserById(long userId); } ```

springboot版本3.1.0,jetcache版本2.7.3。 打包的时候报这个错误,求教 Unable to compile generated source autoConfigureBeans 在 com.alicp.jetcache.autoconfigure.RedisAutoConfiguration.RedisAutoInit 中是 private 访问控制 target/spring-aot/main/sources/com/alicp/jetcache/autoconfigure/RedisAutoConfiguration_RedisAutoInit__Autowiring.java 16:13

你好作者大大,我想请问一下 为什么BroadcastManager的startSubscribe与close方法都加了synchronized呀!感觉不需要吧!谢谢!

版本号:jetcache-core 2.6.5 设置了statIntervalMinutes只能统计该时间区间内的信息,但是我想既统计statIntervalMinutes这个周期内的缓存情况,又想统计整个周期(从jetcache启动到现在)的缓存情况,我该如何配置呢。 查阅了官方手册好像没有看到这种配置方法,使用自定义统计又感觉没有官方的全面和友好。 期待您的回复,谢谢。

多个@Cached的name相同时候,所有该方法的expire时间都会是第一次执行的那个值,如: 1. @Cached(name = "UserEntity:", key = "'findAllCache'", cacheType = CacheType.BOTH, expire = 1800) 2. @Cached(name = "UserEntity:", key = "#id", cacheType = CacheType.BOTH, expire = 3600) 如果先执行方法1,然后执行方法2,则redis中缓存的两个key(UserEntity:findAllCache UserEntity:5")的超时时间都是1800, 如果先执行方法2,然后执行方法1,则redis中缓存的两个key的超时时间就会都是3600,按道理应该是互不干涉的,因为redis的key是注解中的name+key。...