使用redis的一点心得

Posted DarryRing

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用redis的一点心得相关的知识,希望对你有一定的参考价值。

项目使用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

以上是关于使用redis的一点心得的主要内容,如果未能解决你的问题,请参考以下文章

读懂 Redis 源码,我总结了这7点心得

pandas 的一点心得

编译过程的一点心得

关于创建无窗体程序的一点心得

Vuex 实际使用中的一点心得 —— 一刷新就没了

看书写代码的一点心得