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

RedisInsight on Docker and Redis on Docker: Could not connect: Error 99 connecting to localhost:6379. Cannot assign requested address

Based on this tutorial https://www.youtube.com/watch?v=XrFeRwJjWHI , I tried running Redis in Docker. File docker-compose.yml version: "3.8" services: redis: image: redis volumes: - ./data:/data ports: - 6379:6379 docker pull redis docker-compose up docker-compose up -d docker container ls telnet localhost 6379…

VIEW QUESTION

Spring Data Redis, Expiring and Redis Cluster

I have an app using Spring Boot 2.2.6.RELEASE (spring-boot-starter-data-redis) Jedis 3.1.0. I've have a Redis 5.0.7 Cluster of 6 nodes: 3 masters and 3 slaves with replication 127.0.0.1:7000-7005 (just exemplary values). I've configured my app this way: @Configuration @EnableRedisRepositories(basePackages =…

VIEW QUESTION
Back To Top
Search