CentOS 7下Redis5安装部署与开机自启动(3)

@Test
    public void testJedisSingle() {
        //创建一个jedis的对象。
        Jedis jedis = new Jedis("172.20.10.7", 6379);
        //调用jedis对象的方法,方法名称和redis的命令一致。
        jedis.set("key1", "jedis test");
        String str = jedis.get("key1");
        System.out.println(str);
        //关闭jedis。
        jedis.close();
    }
   
    /**
    * 使用连接池
    */
    @Test
    public void testJedisPool() {
        //创建jedis连接池
        JedisPool pool = new JedisPool("172.20.10.7", 6379);
        //从连接池中获得Jedis对象
        Jedis jedis = pool.getResource();
        String str = jedis.get("key1");
        System.out.println(str);
        //关闭jedis对象
        jedis.close();
        pool.close();
    }
}

至此redis安装配置完毕。

good luck !

Linux公社的RSS地址https://www.linuxidc.com/rssFeed.aspx

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/410a824e06f1316ce967045c58bc1b34.html