Occasionally you encounter below timeout exception, and only thought you get is "all these days it was working fine why all of a sudden this error"?
Exception:
Timeout performing GET {key}, inst: 1, mgr: Inactive, err: never, queue: 37, qu: 0, qs: 37, qc: 0, wr: 0, wq: 0, in: 65536, ar: 0, clientName: anantkm_pc, serverEndpoint: Unspecified/anantkm.redis.cache.windows.net:6380, keyHashSlot: 407, IOCP: (Busy=2,Free=998,Min=50,Max=1000), WORKER: (Busy=190,Free=8001,Min=50,Max=8191) Local-CPU: 95.8% (Please take a look at this article for some common client-side issues that can cause timeouts: http://stackexchange.github.io/StackExchange.Redis/Timeouts)
We need to understand StackExchange.Redis uses a configuration setting "synctimeout" for synchronous operations, for some reason if the intended operation is not able to complete within 1000 ms (a default value), it will throw above exception. Let's try to und