lisay-yan
lisay-yan
Hi, Jetty Expert For @jingke 's question, suspect it maybe caused by set resolver per request, and over write maybe happened during traffic load. Per request call below func, it...
Update Due to Redis cluster passwd required, I didn't set it to cluster client. After set right passwd, the network behavior is controllable. But, in the product env, if Redis...
One more question. I found work around if need send a PING, but my response always is "connection is closing". While, other commands, set/get, looks good. Why? // Create an...
hi, Yes, I try to use ping to understand the rainy day case, and expected "NOAUTH Authentication required" to take action and prevent fd costing. But after I set correct...
If wrong passwd to AsyncRedisCluster, the test result as below send set set e = NOAUTH Authentication required. send ping e = connection is closing
Hi, Dear code officers Due to this request block my current project, so, I did simple changes to expose hiredis redisReply. Would you like support review and approval? Thanks so...
@sewenew Most of traffic in my use case is redisModule, and user already with business logic to decode redisReply in current system. To integrate with Reds-Plus-Plus only for cluster aware,...
@sewenew I understand hiredis doesn't support update certs for existing connection. That is also not necessary since handshake phase has passed. While, if TLS server decide FIN these connections, then...
@sewenew BTW, another point, hiredis open below config for redisCreateSSLContext to gain SSL context. opts.tls.cert = "/path/to/client/certificate"; // Optional opts.tls.key = "/path/to/private/key/file"; // Optional opts.tls.cacert = "/path/to/CA/certificate/file"; // You can...
@sewenew Use redisInitiateSSL to set hiredis TLS with more SSL config is recommended by hiredis code officer. If update hiredis local structure is not a issue. The overall behavior can...