java Redis读取数据方法

Posted 悠悠乃

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java Redis读取数据方法相关的知识,希望对你有一定的参考价值。

1.

    public Map<String, List<CellInfo1>> getSceneCoverCellForRedis(){
        Jedis jedis = null;
        Map<String, List<CellInfo1>> cellMap= null;
        try {
            jedis = jedisPool.getResource();
            String jsonStr= jedis.get(DbKeys.WB_COVERAREA_4);
            Type type = new TypeToken<Map<String,List<CellInfo1>>>() {}.getType(); 
            Gson gson = new Gson();
            cellMap= gson.fromJson(jsonStr,type);
            jedis.close();
            jedis= null;
        } catch (Exception e) {
            if(jedis != null){
                jedis.close();
            }
            e.printStackTrace();
        }
        return cellMap;
    }

2.

public class DbKeys {

......

public final static String WB_COVERAREA_4="wb_coverarea_4";

}

以上是关于java Redis读取数据方法的主要内容,如果未能解决你的问题,请参考以下文章

solr分布式索引实战分片配置读取:工具类configUtil.java,读取配置代码片段,配置实例

springboot整合mybatis,redis,代码

springboot整合mybatis,redis,代码

nzSQLException 读取超时错误

Java实现从Redis中批量读取数据

redis存储session配制方法