项目引入jar包:spring-data-redis-1.6.1.RELEASE.jar,jedis-2.8.1.jar
使用redisTemplate遇到的一个问题,在此记录下:
public String getIconResourceByCache (String model) { //先从缓存中获取数据 String hashkey = "version"; String versionVal = (String)redisTemplate.boundHashOps(VERSION_KEY) .get(hashkey); Long expire = redisTemplate.boundHashOps(VERSION_KEY).getExpire(); System.out.println("redis有效时间:"+expire+"S"); if (versionVal == null) { System.out.println("redis缓存没有数据,重新获取后设置缓存"); versionVal = "temp测试"; //将结果放入缓存,注意先后顺序(先设置值,再设置过期时间),否则过期时间不生效 redisTemplate.opsForHash().put(VERSION_KEY, hashkey, versionVal); redisTemplate.expire(VERSION_KEY, Constants.EXPIRE, TimeUnit.SECONDS); } return versionVal; }
代码if代码体内,最后两行代码,如果交换位置,则上面的expire过期时间永远为-1,代表永不过期
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。