项目使用redis作为仓库,货位数据双写的数据库,减少了微服务之间的调用,
但是在使用过程中经常看到服务中报错:
redis异常:【r-bpxxxxxxxx.redis.rds.aliyuncs.com:6379/44】状态不可用,等待后台检查程序恢复方可使用。Connect to server timeout","DateTime":"2020-07-03T12:48:35.0764406+08:00","Level":"Critical","Command":null}
csreids 错误【r-bpxxxxxxxx.redis.rds.aliyuncs.com:6379/44】:Connection was not opened at CSRedis.CSRedisClient.GetAndExecuteAsync[T](RedisClientPool pool, Func`2 handerAsync, Int32 jump, Int32 errtimes)
使用的连接串为:
bpxxxxxxxx:6379,password=*****,defaultDatabase=44,testcluster=false,idleTimeout=15000,tryit=2,poolsize=5,preheat=1,syncTimeout=15000
根据跟作者沟通后,
```
https://github.com/2881099/csredis/issues/313
```
修改连接串:
bpxxxxxxxx:6379,password=*****,defaultDatabase=44,testcluster=false,idleTimeout=15000,tryit=2,poolsize=300,preheat=100,syncTimeout=15000
生产环境使用preheat=1,压测使用preheat=100