码迷,mamicode.com
首页 > 系统相关 > 详细

Redis Cache

时间:2018-12-28 22:09:21      阅读:254      评论:0      收藏:0      [点我收藏+]

标签:set   type   nts   序列   cache   trace   pre   exce   对象   

    /*以下的方法都可以使用*/
    public List<PUser> select() {
        try {
            Jedis jedis = new Jedis();
            String key = "newss";
            //jackson内置的对象有序列化和反序列化的方法
            ObjectMapper objectMapper = new ObjectMapper();
            //判断Redis是否有这个key
            if (jedis.exists(key)) {
                //Gson的字符串转为List<Object>
                //new Gson().fromJson(jedis.get(key), new TypeReference<List<PUser>>() {}.getType());
                //jackson字符串转为List<Object>
                return objectMapper.readValue(jedis.get(key), new TypeReference<List<PUser>>() {
                });
            }
            //Redis当中没有,直接查询数据库
            List<PUser> pUsers = mapper.selectAll();
            jedis.set("newss", objectMapper.writeValueAsString(PUser.class));
            return pUsers;
        } catch (JsonProcessingException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
        return null;
    }

 

Redis Cache

标签:set   type   nts   序列   cache   trace   pre   exce   对象   

原文地址:https://www.cnblogs.com/YouAreABug/p/10182990.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!