IDEA下测试Redis

一、首先需要在pom.xml中加入Java Redis的jar包

  • 
    
        redis.clients
        jedis
        2.9.0
    

     

二、进行简单的测试测试 (低性能,每创建一次都要关闭一次,浪费资源

  • IDEA下测试Redis_第1张图片
  • package cn.e3mall.jedis;
    
    import org.junit.Test;
    import redis.clients.jedis.Jedis;
    
    /**
     * Jedis的测试方法
     */
    public class JedisText {
    
        @Test
        public void textJedis() throws Exception{
            //创建一个连接Jedis对象,参数:host、port
            Jedis jedis=new Jedis("127.0.0.1",6379);
            //直接使用Jedis操作Redis,所有Jedis命令都对应一个方法
            jedis.set("test123","my first jedis test");
            String string = jedis.get("test123");
            System.out.println(string);
            //关闭连接
            jedis.close();
        }
    }
    

    IDEA下测试Redis_第2张图片

  • 而且也能在Redis Desktop Manager查到

  • IDEA下测试Redis_第3张图片

三、连接Jedis连接池

  •  @Test
        public void testJedisPool() throws Exception {
            //创建一个连接池对象,两个参数host、port
            JedisPool jedisPool = new JedisPool("127.0.0.1", 6379);
            //从连接池获得一个连接,就是一个jedis对象。
            Jedis jedis = jedisPool.getResource();
            //使用jedis操作redis
            String string = jedis.get("test123");
            System.out.println(string);
            //关闭连接,每次使用完毕后关闭连接。连接池回收资源。
            jedis.close();
            //关闭连接池。
            jedisPool.close();
        }

    IDEA下测试Redis_第4张图片

四、连接Jedis集群

  •     @Test
        public void testJedisCluster() throws Exception {
            //创建一个连接集群的JedisCluster对象。有一个参数nodes是一个set类型。set中包含若干个HostAndPort对象。
            Set nodes = new HashSet<>();
            nodes.add(new HostAndPort("192.168.40.129", 7001));
            nodes.add(new HostAndPort("192.168.40.129", 7002));
            nodes.add(new HostAndPort("192.168.40.129", 7003));
            nodes.add(new HostAndPort("192.168.40.129", 7004));
            nodes.add(new HostAndPort("192.168.40.129", 7005));
            nodes.add(new HostAndPort("192.168.40.129", 7006));
            JedisCluster jedisCluster = new JedisCluster(nodes);
            //直接使用JedisCluster对象操作redis。
            jedisCluster.set("test", "123");
            String string = jedisCluster.get("test");
            System.out.println(string);
            //关闭JedisCluster对象
            jedisCluster.close();
        }

     

你可能感兴趣的:(Redis)