Jedis连接Redis单机版

连接单机版

把jedis依赖的jar包
添加到工程中

//单机版测试
@Test
public void testJedisSingle() throws Exception {
    //创建一个Jedis对象
    Jedis jedis = new Jedis("192.168.25.153", 6379);
    jedis.set("test", "hello jedis");
    String string = jedis.get("test");
    System.out.println(string);
    jedis.close();
}

使用连接池

//使用连接池
@Test
public void testJedisPool() throws Exception {
    //创建一个连接池对象
    //系统中应该是单例的。
    JedisPool jedisPool = new JedisPool("192.168.25.153", 6379);
    //从连接池中获得一个连接
    Jedis jedis = jedisPool.getResource();
    String result = jedis.get("test");
    System.out.println(result);
    //jedis必须关闭
    jedis.close();
    //系统关闭时关闭连接池
    jedisPool.close();
}

猜你喜欢

转载自blog.csdn.net/nangeali/article/details/81395945