redis 出现 redis.clients.jedis.exceptions.JedisConnectionException: Unexpected end of stream.

redis 出现 redis.clients.jedis.exceptions.JedisConnectionException: Unexpected end of stream._第1张图片
redis中出现Unexpected end of stream.png

点进来后发现抛异常的地方


redis 出现 redis.clients.jedis.exceptions.JedisConnectionException: Unexpected end of stream._第2张图片
Unexpected end of stream.png


这个时候需要在config中配置下就好了 , 我这里所写的只是javase 上操作,所以没有使用xml文件进行配置

        private final static JedisPool POOL ;
    static {
        //1.连接池配置对象
        JedisPoolConfig config = new JedisPoolConfig();
        // 可选的操作
        // 这只连接池最大连接数
        config.setMaxTotal(50);
        // 设置空闲时池中保有的最大连接数
        config.setMaxIdle(10);
        config.setMaxWaitMillis(1000 * 100); 
        config.setTestOnBorrow(true); 
        // 2. 设置连接池对象
        POOL = new JedisPool(config, "192.168.2.154", 6379,1000,"123456");
    }

你可能感兴趣的:(redis 出现 redis.clients.jedis.exceptions.JedisConnectionException: Unexpected end of stream.)