I'm using StackExchange.Redis version 1.0.0.0 in C# Windows Application. This Application is Multi-Thread and we save some values in Redis Cache.
When I need a key's value, First i check Existence of that key by EXISTS
command.
some times an Exception occurs:
Timeout performing EXISTS SpeedLimit_GF__VU_3, inst: 2, mgr: ExecuteSelect, queue: 0, qu=0, qs=0, qc=0, wr=0/0, in=0/0, IOCP:(Busy=0,Free=1000,Min=8,Max=1000), WORKER:(Busy=1,Free=1022,Min=8,Max=1023) at StackExchange.Redis.ConnectionMultiplexer.ExecuteSyncImpl[T](Message message, ResultProcessor1 processor, ServerEndPoint server) at StackExchange.Redis.RedisBase.ExecuteSync[T](Message message, ResultProcessor1 processor, ServerEndPoint server) at StackExchange.Redis.RedisDatabase.KeyExists(RedisKey key, CommandFlags flags) . . .
Cache Server and Application Server is same. What can be the reason and how I can solve this problem?