30 questions
Advice
0
votes
0
replies
34
views
Authorizing Valkey users using groups via OAuth
I’m looking for guidance on integrating Azure AD–based authorization with Valkey, specifically using OAuth and Azure AD group membership.
Today, Valkey authorization is handled via users.acl. I’m ...
Score of 0
0 answers
145 views
Java Springboot talking to Elasticache - API calls fail during ecs tasks auto-scaling
Java Springboot application talks to Aws Elasticache using Lettuce client running on ECS.
Springboot version 3.4.5
Lettuce version 6.8.1.RELEASE
Elasticache Valkey serverless using IAM authentication
...
Score of 1
0 answers
441 views
How do I find out what's causing these valkey AWS Elasticache requests to timeout?
We have sporadic, but repeatable, timeout issues with valkey at higher loads that we haven't been able to diagnose the root cause of. We're using StackExchange.Redis on the old school .NET Framework 4....
Score of 1
1 answer
58 views
An object with a Redis object in its attribute can't be serialized. How to modify it for serialization without delaying the connection?
When writing a multi-process program for web scraping, I passed an object of my custom RedisQueue class as an argument to the multi-process task function. This class contains a Redis object as one ...
Score of 0
1 answer
133 views
Why is my ASP.NET Core Web API not connecting to Elastic Cache Valkey
I am working on an ASP.NET Core Web API that is deployed to AWS. I am trying to integrate Elastic Cache using Valkey and working locally at the moment. This is my Program.cs:
using Amazon;
using ...
Score of 0
0 answers
46 views
JSON.DEL doesn't work correctly when filter is applied to object
Using valkey-bundle:8.1 this test doesn't work correctly:
json.set test $ '{"root" : {"1" : {"value":1},"2" : {"value":2},"3" : {"value&...
Score of 0
0 answers
66 views
Can not deserialize Singleton container from 2 entries
I occasionally get Could not read JSON:Can not deserialize Singleton container from 2 entries when using Redis as a cache provider in Spring Boot. What could be the cause of this?
Score of 1
2 answers
1147 views
Connecting to Elasticache Valkey Using IAM Role
tl;dr Working in Go, and had to write my own token signing method connect to Valkey Instance in Elasticache. Keep getting error: "WRONGPASS invalid username-password pair or user is disabled.&...
Score of -1
1 answer
512 views
Valkey on AWS via Terraform can not use replication groups
I am trying to set up a cache cluster on AWS via terraform. I want to use the engine 'Valkey'. I am getting the following error when I run terraform plan: The only acceptable Engine type when using ...
Score of 0
1 answer
171 views
Lexicographic search in Redis without RediSearch
I want to implement lexicographic search (range queries) in Redis as a way to do text search. This is for contexts where RediSearch is not available such as Upstash or Valkey (Redis fork) (edit: ...
Score of 0
0 answers
594 views
AWS Serverless Elasticache Valkey
Today I created Serverless Elasticache Valkey and tried to connect using code which I got from Connect to your cache section.
const {Redis} = require("ioredis");
const client = new Redis....
Score of 0
1 answer
830 views
Valkey / Redis Testcontainer Config
i am unsure how to setup Testcontainers with valkey in my spring project.
As redis is no more open source, i chose to implement caching with valkey 8.0.0 instead.
But i am having trouble setting up ...
Score of 0
1 answer
1144 views
Issues with RedisCluster Connection Using ioredis
I’m experiencing some connection issues with RedisCluster.
I’m using Redis version 7.0 and connecting to RedisCluster(memoryStore GCP using Iam and disabling TLS) with the ioredis package in a Node.js ...
Score of 0
1 answer
123 views
Cannot disable persistence of redis
I need to receive data from IoT sensors and store the latest data information in Valkey.
At this time, there is a logic that checks whether the key already exists, and if it does not, it logs the ...
Score of 2
2 answers
1944 views
How to delete keys matching pattern in AWS Elasticache Valkey
So, I have a Node.js Lambda that saves its response in an AWS Elasticache Valkey cache. All the keys follow the same format: getActivities:*. I'd like to clear all the keys matching this pattern.
I ...