Keung

Results 3 issues of Keung

请问CSRedis有无接口示例代码或者如何配置证书? **Code:** var csredis = new CSRedisClient("192.168.8.111:6379,ssl=true"); RedisHelper.Initialization(csredis); Console.WriteLine(csredis.Get("name")); **Exception error:** 3)System.Exception:“【192.168.8.111:6379/0】状态不可用,等待后台检查程序恢复方可使用。One or more errors occurred. (Authentication failed because the remote party sent a ### TLS alert: 'HandshakeFailure'.)” 2)AuthenticationException: Authentication...

哨兵本身设置了requirepass密码,CSRedis无法连接哨兵,connectionString里的password为redis的密码,基于安全需求能否增加连接哨兵本身的密码? // // 摘要: // 创建redis哨兵访问类(Redis Sentinel) // // 参数: // connectionString: // mymaster,password=123456,poolsize=50,connectTimeout=200,ssl=false // // sentinels: // 哨兵节点,如:ip1:26379、ip2:26379 // // readOnly: // false: 只获取master节点进行读写操作 // true: 只获取可用slave节点进行只读操作 public CSRedisClient(string...

in src/DinkToPdf/SynchronizedConverter.cs private void StopThread() { lock (startLock) { if (conversionThread != null) { kill = true; while (conversionThread.ThreadState == ThreadState.Stopped) { } conversionThread = null; } } } private...