运行测试中的clear 命令为何只清空了 EhCache,没有清空 redis 缓存
RedisCache 中的 clear() 只清空了 EhCache,没有清空 redis 缓存。redis 版本是 2.4.5,另外好像 redis 的 del 命令不支持正则表达式的吧。
如下:
@Override
public void clear() throws CacheException {
Jedis cache = RedisCacheProvider.getResource();
boolean broken = false;
try {
cache.del(region + ":*");
} catch (Exception e) {
broken = true;
throw new CacheException(e);
} finally {
RedisCacheProvider.returnResource(cache, broken);
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
哦
慎用 clear 方法,因为 OSC 没用到这个方法,J2Cache 没实现 redis 的 clear