25,594 questions
0
votes
0
answers
11
views
Azure Cache for Redis authentication using System Assigned Identity
I have an Azure Cache for Redis that I am trying to connect to from an Azure Container App using the managed identity. I have this setup working properly in 5/6 of my environments. However one ...
0
votes
1
answer
18
views
Springboot refuses to utilise the custom RedisCacheManager
So I have a bit of an issue with regards to Redis. It seems that SpringBoot refuses to utilise the custom RedisCacheManager bean that I've created despite using the approppriate annotations ("@...
0
votes
2
answers
33
views
Getting Connection Timeout Instead of Connection Refused When Calling redis-cli PING
I don't have any redis-server running and I want the redis-cli PING to return Connection refused. Instead I got Connection timeout which confused me because I don't have any running redis-server.
Is ...
0
votes
0
answers
17
views
How to exclude woocommerce cart page from redis cache
cart not update when not login in
Hello,the woocommerce store runs with redis object cache,after multiple tests, i've found that Issue:
When in the state of an unlogged-in visitor, the Redis cache ...
1
vote
0
answers
11
views
Does Boost Redis support Autopipelining
Many redis clients claim to support Auto-pielining. Does Boost redis support that? If yes, how can it be enabled?
1
vote
1
answer
75
views
Infinite loop while using redis scan command to delete patterns in golang
I am using scan command in golang to get redis keys by a provided pattern. I am using redis cluster, and therefore in order to avoid missing keys I use ForEachMaster. This is the code I use:
func ...
0
votes
0
answers
41
views
Spring Boot Redis connection refused: localhost:6379 using Docker Compose
I'm new to docker and I'm trying to run redis-server and my springboot app both on a container.
The Redis server is running fine on docker but when i try to connect my spring boot app to the redis ...
0
votes
1
answer
21
views
Do extra action when on redis.expire timeout
I am using Redis to cache data, and I'm setting an expire timeout.
When cached data is cleaned up from redis database after its time expires I want to perform an extra action.
Question: How to perform ...
-1
votes
0
answers
32
views
Redis Key collisions when sharing DB between two or more Spring Boot Apps (Spring Cloud Gateway)
I've multiple Spring Boot based projects deployed in a Kubernetes cluster, all of them share the same Redis DB instance also hosted in the same cluster.
Some of the Apps are built as Spring Cloud ...
0
votes
1
answer
40
views
Redis fail after some time and need to restart again [closed]
I have deployed redis on server and it is used by different services but after some time I face this issue always and i need to restart the service to make it work again.
1:S 25 Mar 2025 07:25:32.326 #...
2
votes
1
answer
38
views
Unable to Authenticate Celery Tasks with Redis Container
Initially, I was using Redis installed locally without any password, and Celery tasks worked fine.
Later, I switched to a Redis Docker container and added a password (PASSWORD) using the --requirepass ...
0
votes
0
answers
25
views
incrementing a hash set value in Redis
I have been trying to remove a value from a HashSet if the value is 0 in Redis. However I keep getting this error that reads.
ERR value is not an integer or out of range
When I go into the Redis CLI, ...
0
votes
0
answers
21
views
Re-establishing a broken long-lived connection with iam tokens
my company has historically used Lettuce without authentication. We relied on AWS security groups. But now our security team is asking us to authenticate via iam.
Each of our application services that ...
0
votes
2
answers
57
views
Are use cases of Redis mutually exclusive? E.g is Redis either a cache or a DB or something else but not all at once?
I have not used Redis but from what I have read it can be either an application level cache or can be used as a durable storage i.e. a primary NoSQL DB.
Also in my understanding it is a in-memory ...
1
vote
0
answers
23
views
How to handle high-concurrency job processing with BullMQ and NestJS?
I'm currently working on a medical appointment platform (built with NestJS and Redis) that handles over 300 daily active users. One of the key features is the asynchronous processing of appointment ...