2881099 / FreeRedis

🦄 FreeRedis is .NET40+ redis client. supports cluster, sentinel, master-slave, pub-sub, lua, pipeline, transaction, streams, client-side-caching, and pooling.
MIT License
911 stars 160 forks source link

BUG: SetNxAsync 高并发情况下, timeoutSecond会被初始化为-1 #194

Open aetforviolet opened 1 month ago

aetforviolet commented 1 month ago

BUG: SetNxAsync 高并发情况下, timeoutSecond会被初始化为-1 for(var i=0,i<10,i++){ Task.Run(() => { await _FreeRedisService.Instance.SetNxAsync("1", 1,1); }); }