记一次jedis并发使用问题JedisException: Could not return the resource to the pool

今天线上突然发现个奇怪的问题项目第一次启动的时候redis报错JedisException: Could not return the resource to the pool

直接访问接口的时候不报错,访问页面的时候报这个错。而且只有项目重启的时候才会报这个错,刚开始以为接口问题,仔细分析页面原来这个页面同时加载了好多个接口这些接口都调用了一个方法。而这个方法正好依赖redis。线下自己写个多线程访问

记一次jedis并发使用问题JedisException: Could not return the resource to the pool_第1张图片

问题出现了


getString 方法

记一次jedis并发使用问题JedisException: Could not return the resource to the pool_第2张图片

记一次jedis并发使用问题JedisException: Could not return the resource to the pool_第3张图片

getPool方法

记一次jedis并发使用问题JedisException: Could not return the resource to the pool_第4张图片

问题来了这个getPool不是线程安全的然后又用了一个全局的

所以多线程情况下每个线程获取的pool都不一样然后jedis用完了链接返回去的pool不一样导致出现问题。

找到问题了解决很简单直接在getPool通过双重校验锁可以解决、记一次jedis并发使用问题JedisException: Could not return the resource to the pool_第5张图片

或者配置信息可以加载静态代码块。


你可能感兴趣的:(技术,并发编程)