Redis Jedsi使用方法
Posted 星小梦
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Redis Jedsi使用方法相关的知识,希望对你有一定的参考价值。
JedisPoolConfig:用于配置Jedis连接池的配置
JedisPool:使用连接池获取Jedis连接
Jedis:实际与Redis进行一系列的操作
代码示例:
1 public void demo(){ 2 JedisPoolConfig JPC=new JedisPoolConfig(); 3 JPC.setXXX(); 4 JedisPool JP=new JedisPool(JPC,"ip addr",port); 5 Jedis jedis=JP.getResource(); 6 jedis.set("key","value"); 7 String name=jedis.get("key"); 8 System.out.println(name); 9 jedis.close(); 10 JP.close(); 11 }
以上是关于Redis Jedsi使用方法的主要内容,如果未能解决你的问题,请参考以下文章