17 questions
Score of 1
0 answers
104 views
Application not changing master on Sentinel + KeyDB pair dropdown
Description
I have 3 pairs of Sentinel + KeyDB working on separated machines. Sentinels connected between each other so they can observe dropdowns. Also, I have an application, which uses go-redis to ...
Score of 1
0 answers
448 views
KeyDB : Vector Search and Search modules
We are trying to find a reasonable substitute for Redis Cache.
I am looking at KeyDB for possible replacement.
However, I am unable to learn if we would be able to run following two modules in KeyDB.
...
Score of 1
0 answers
521 views
Keydb server not accepting connections after a few hours
I have a set of applications connecting to a Keydb server. If i restart my services multiple times the keydb server becomes unresponsive. It stops accepting further connections, but keydb will still ...
Score of 0
1 answer
237 views
Redis two operations performing in single command like String command and Hash command at a time for fetching their values from Redis Server
I have a query regarding redis two operations performing in single command like String command and Hash command at a time
for fetching their values from Redis Server.
SET key1 value1
SET key2 value2
...
Score of 0
1 answer
938 views
KeyDB container problems in version 6.3.2 and later
I have a Java application that uses a redundant KeyDB, load-balanced through HAProxy, where I store the elements with information to facilitate the business logic of my application. A few months ago, ...
Score of -1
1 answer
162 views
Keydb ip in kubernetes
I have a keydb service with a cluster IP on a namespace
Next to this i have a pod who need to connnect to this keydb and parse data,
How can my pod can know cluster ip of my keydb service ?
Thanks for ...
Score of 5
1 answer
2121 views
Behavior of redis.ConnectionPool with asyncio (redis-py)
I am using Redis in a FastAPI application using the redis-py library. I am unclear about the behavior of redis.ConnectionPool in this context, especially regarding how it handles situations where the ...
Score of 2
0 answers
1088 views
Lettuce redis client command retry mechanism
Is there any mechanism in the lettuce client to retry the command if it doesn't receive a response in some time?
I have observed that lettuce is retrying the command after 200 ms if the response is ...
Score of 0
1 answer
588 views
How to call KeyDB's EXPIREMEMBER method from PHP
I am working on replacing Redis with KeyDB in my application, in order to utilise the KeyDB EXPIREMEMBER feature. However, this method is not included with PHPRedis.
Is there a KeyDB drop-in ...
Score of 1
1 answer
1473 views
KeyDb replica master is connected, but not working
I want to create an active-active replication for keydb, I used the official docs https://docs.keydb.dev/docs/active-rep/ , however, I'm not getting the expected results, even though I'm not getting ...
Score of 4
1 answer
2080 views
Proper Fault-tolerant/HA setup for KeyDB/Redis in Kubernetes
Sorry for a long post, but I hope it would relieve us from some of clarifying questions. I also added some diagrams to split the wall of text, hope you'll like those.
We are in the process of moving ...
Score of 0
1 answer
201 views
which system should I choose to make it easier to transfer it to a cluster later?
we have a small project, and we want to start using a non-clustered version of either keydb or redis. I've read a lot of reviews. I would like to hear more. Which system will be easier to turn into a ...
Score of -1
1 answer
1501 views
Golang how to get started with KEYDB [closed]
I started studying the question of how to replace REDIS and found descriptions of the KEYDB database, but I did not find a description of how to start using it with Golang, if there are examples or ...
Score of 0
1 answer
2849 views
KeyDB and multithreading: Looks like no multithreading is going on?
I am experimenting with KeyDB to see if and how much performance improvements can be gained, as there are definitely bottlenecks with Redis single-threaded query model. So I found KeyDB, and they say ...
Score of 3
1 answer
934 views
Redis set key, val only if val matches a previous one for concurrency
How can one do this? Using Jedis and Java.
I am working with hset right now, but does no really matter.
Does one have to send along lua code to achieve this? How is that done with Jedis?