美文网首页
redis 出现 redis.clients.jedis.exc

redis 出现 redis.clients.jedis.exc

作者: 山水风情 | 来源:发表于2017-06-09 14:15 被阅读0次
redis中出现Unexpected end of stream.png

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


Unexpected end of stream.png

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

        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.exc

      本文链接:https://www.haomeiwen.com/subject/rmtfqxtx.html