141 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
1
answer
27
views
Springboot - Redis Cache - Can not store data in cache
I user Docker to run the backend. In docker, I have 3 container which are bus-db, bus-server, bus-redis. This is my docker-compose.yaml
\`services:
db:
container_name: "bus-db"
image: ...
2
votes
1
answer
208
views
Trouble implementing redis cache in php laminas
I have installed php redis in my local system and have added the redis adapter via the composer command:
composer require laminas/laminas-cache-storage-adapter-redis
I tried following this ...
user avatar
user27601930
1
vote
1
answer
2k
views
AWS Redis apparently not allowing KEY * command operation to fetch all keys
I got the below exception while reading the all the keys from my AWS Redis cache. The write operation to cache was successful and I validated it with logs. To the best of my knowledge AWS does not ...
1
vote
0
answers
538
views
How to Resolve "ERR unknown command getex" Error with Embedded Redis v1.0.0 and Quarkus
I'm encountering an issue with embedded Redis v1.0.0 in a Quarkus application while running integration tests, but i get this error message:
java.util.concurrent.CompletionException: ERR unknown ...
0
votes
0
answers
664
views
Unable to Connect to Redis: Test Failures in Quarkus Environment
I'm encountering an issue with my Quarkus application where I'm unable to establish a connection to Redis during testing, resulting in failures.
I have a Quarkus application that relies on Redis for ...
0
votes
0
answers
470
views
How to Cache a Method Returning a Map in Quarkus with Redis?
I'm trying to cache a method in my Quarkus application that returns a Map<String, PlanAttrUnified>. I'm using Redis as the caching provider. However, I'm encountering issues configuring the ...
0
votes
0
answers
108
views
REDIS Keys in Kubernetes deleted after 24 hours of migrating to Azure Cache for Redis
We have Kubernetes cluster in which we have deployed a Redis instance using Helm chart chart=redis-9.4.3 , Disk is 8gb for persistence via AOF way.
Image : docker.io/bitnami/redis:5.0.5-debian-9-r169
...
0
votes
0
answers
1k
views
How to implement distributed Cache in the .net Framework Project of version 4.8
I wanted to implement the Distributed Cache in the project with following code, but it is throwing null reference.
public class RedisCacheService : ICacheService
{
private readonly ...
1
vote
0
answers
892
views
Redis Cache in a .NET framework 4.6.2 application
I am trying to implement Redis Cache in a .NET framework 4.6.2 application.
Have installed Microsoft.Extensions.Caching.StackExchangeRedis and StackExchange.Redis nuget packages and wanted to add ...
0
votes
1
answer
594
views
Google cloud memory store redis by default sets maxmemory-gb equals to instance memory. Does this pose a problem for eviction when cache is full?
I have a google cloud memory store instance M2 tier with 10GB capacity. I did not set any maxmemory-gb for it. By default it sets equals to instance capacity. Now my question is when it reaches the ...
2
votes
0
answers
829
views
Delete all Redis keys starting with a String using @CacheEvict
I am using Redis cache for caching (in a Spring boot application). I want to delete all keys starting with a Prefix String which is formed through the code and will look something like--> ABC:env:...
1
vote
2
answers
449
views
Which charatcer are not allowed in "RedisValue" value argument in redis cache?
I've to store redis key and value in redis chache. However the redisValue which I want to save is a Json string of 1976 characters length which has-> {,},[,],",-,: characters apart from ...
0
votes
1
answer
596
views
how update cached data when main data is change in laravel
i want to use a cache of laravel for ex: index method on a specific controllers!
i use Cache::rememberForever method of laravel cache.
i dont use Cache::remember with ttl time for caching data!
my ...
2
votes
0
answers
286
views
How to create RedisCacheManager in spring-data 3.0.x
I'm migrating my application from spring boot 1.5.x to 3.0.x. I want to keep jedis but I have a problem with the instantiation of RedisCacheManager.
Now constructor signature is
RedisCacheManager(...
2
votes
0
answers
113
views
Does Redis cache supports Native sql Api
I am using apache ignite for my application now I wanted to migrate to redis-cache but I used ignite query api to fetch data. Is there any possible way I can use the same queries just by changing ...