skip to Main Content

StackExchange.Redis – Unexplainable time-out exception issue

We are experiencing issues in our integration within .NET Core 3.1 with the Azure Redis Cache. The exception thrown is An unhandled exception has occurred while executing the request.","@l":"Error","@x":"StackExchange.Redis.RedisTimeoutException: Timeout awaiting response (outbound=1403KiB, inbound=5657KiB, 15000ms elapsed, timeout is 15000ms), command=EVAL,…

VIEW QUESTION

Multiple Azure redis connection

To overcome latency, On "Startup.cs" of asp.net core 2.1, I am creating 2 static connections to Azure Redis & reuse those same connection instances during the application entire life cycle. Is it is good practice to create multiple connections to…

VIEW QUESTION

Azure redis cache SetString multiplexer error

I'm attempting to use Azure redis cache to reduce hits to my database, but I'm stuck on something very weird. My WebMethod looks as such. [WebMethod] public static string HistoricalData(string searchterm, string topicId) { string constr = ConfigurationManager.ConnectionStrings["Azure"].ConnectionString; var lazyConnection…

VIEW QUESTION

Error creating bean with name 'enableRedisKeyspaceNotificationsInitializer'

I am able to connect to Azure Cache for Redis with the following Spring Session configuration: <bean id="redisPassword" class="org.springframework.data.redis.connection.RedisPassword"> <constructor-arg index="0" value="xxxxxxxxxxxxxxxx"/> </bean> <bean id="redisStandaloneConfiguration" class="org.springframework.data.redis.connection.RedisStandaloneConfiguration"> <property name="hostName" value="acmedev.redis.cache.windows.net"/> <property name="port" value="6380"/> <property name="password" ref="redisPassword"/> </bean> <context:annotation-config/> <bean class="org.springframework.session.data.redis.config.annotation.web.http.RedisHttpSessionConfiguration"/> <bean…

VIEW QUESTION
Back To Top
Search