有没有办法为我插入 ignitecache 的不同元素设置不同的到期时间?
Is there a way to put up different expiry times for different elements I insert in ignitecache?
我可以像在 ehcache 中那样插入具有不同到期时间的元素吗
例如:
缓存:添加元素1 //5秒后过期
cache : add element2 //15秒后过期
缓存:添加元素3 //在'x' seconds/minutes
之后过期
如果没有,您能否建议任何替代缓存来处理该问题?
我也打算使用 ehcache,但结果它不支持 active/eager 过期。
缓存条目有单独的过期策略,使用IgniteCache.withExpiryPolicy
:
cache.withExpiryPolicy(new CreatedExpiryPolicy(new Duration(SECONDS, 5))).put(1, 1);
cache.withExpiryPolicy(new CreatedExpiryPolicy(new Duration(SECONDS, 15))).put(2, 2);
我可以像在 ehcache 中那样插入具有不同到期时间的元素吗
例如:
缓存:添加元素1 //5秒后过期
cache : add element2 //15秒后过期
缓存:添加元素3 //在'x' seconds/minutes
之后过期如果没有,您能否建议任何替代缓存来处理该问题?
我也打算使用 ehcache,但结果它不支持 active/eager 过期。
缓存条目有单独的过期策略,使用IgniteCache.withExpiryPolicy
:
cache.withExpiryPolicy(new CreatedExpiryPolicy(new Duration(SECONDS, 5))).put(1, 1);
cache.withExpiryPolicy(new CreatedExpiryPolicy(new Duration(SECONDS, 15))).put(2, 2);