skip to Main Content

Redis Client Side Caching for .Net

Redis 6 has introduced a feature supporting Client Side Caching and is described in here: https://redis.io/topics/client-side-caching I tried out the ServiceStack.Redis and StackExchange.Redis clients, but couldn't make either of them handle it. Can anyone help with a working example in…

VIEW QUESTION

SignalR and Redis

I've got a project that uses SignalR and a RedisBackplane, we've moved from StackExchange.Redis to ServiceStack.Redis due to Redis Sentinel compatibility issues (Not movable) However, it now looks like the support for SignalR Redis Backplane seems to be tied into…

VIEW QUESTION

StackExchange Redis – Net Framework – RedisConnectionException – Serving HashSlot Is Not Reachable

Basically am using StackExchangeRedis client to connect to a Redis Cluster with 3 Nodes. My configuration is the following: config.EndPoints.Add(IPAddress.Parse("Node1_IP"), port); config.EndPoints.Add(IPAddress.Parse("Node2_IP"), port); config.EndPoints.Add(IPAddress.Parse("Node3_IP"), port); config.Password = "password"; config.DefaultDatabase = 0; config.ConnectTimeout = ConfigurationOptionsConnectTimeout; config.AsyncTimeout = ConfigurationOptionsConnectTimeout; config.ConnectRetry = InitialConnectRetries;…

VIEW QUESTION

Bursts of Redis errors

We've recently created a new Standard 1 GB Azure Redis cache specifically for distributed locking - separated from our main Redis cache. This was done to improve stability on our main Redis cache which is a very long term issue…

VIEW QUESTION
Back To Top
Search