Questions tagged [vertx-redis-client]
8 questions
4
votes
1 answer
Vertx 4.2.1 Redis ConfigReader issue
Running into some strange issues while using redis 6.2.6 as the config server. The config is stored using the HSET commands
HSET appt-src-svc-local vertx '{"listen.port": 8080}'
HSET appt-src-svc-local mongo '{"host":"127.0.0.1",…

Tijo
- 93
- 1
- 5
2
votes
1 answer
Problem to build native image using Vert.x-redis with Quarkus
I got a problem when building my quarkus application in native mode using the vertx-redis-client
I`m trying create a cache class with the methods to connect, set and add. When i use the set and the get method i trying to open a new redis…

Daniel
- 21
- 3
1
vote
3 answers
What Redis commands don't work in cluster mode?
UPDATE - 2023 - Verx Redis now supports scan but there's a bug see https://github.com/vert-x3/vertx-redis-client/issues/345
My team has been using the Vertx Redis client for some time and using the keys command with a Redis cluster and I was asked…

Charlie
- 2,004
- 6
- 20
- 40
1
vote
0 answers
Redis node MOVED exception
Redis in our production environment is in cluster mode, with 6 nodes, 3 master nodes and 3 slave nodes. When nodes are switched due to network and other reasons, Redis-client cannot automatically refresh these nodes, and will report exception
MOVED…

Eli
- 11
- 1
1
vote
1 answer
How to recover client from "No handler waiting for message" warning?
At medium to high load (test and production), when using the Vert.x Redis client, I get the following warning after a few hundred requests.
2019-11-22 11:30:02.320 [vert.x-eventloop-thread-1] WARN io.vertx.redis.client.impl.RedisClient - No handler…

trshiv
- 2,445
- 21
- 24
0
votes
2 answers
How to enforce blocking for a vertx Redis stream write?
I have two microservices. One microservice is responsible for writing to a redis stream and the other is reading from the redis stream. For some reasons outside of my control, I have to use the Redis Vertx client in order to write to the stream. The…

Trevor
- 363
- 7
- 20
0
votes
1 answer
Does Vertx 3.9.0 supports Redis Json or not? Any other ways to achieve it?
I am working with Vertx 3.9.0, I am trying to get json data for a key from redis Server.
redisConnection.send(Request.cmd(Command.GET).arg(key), handler->{
if(handler.succeeded()) {
Response response = handler.result();
…

adhikari
- 112
- 2
- 13
0
votes
0 answers
How to stop vertx threads?
So here's the situation: I'm implementing the caching of our webapp using vertx-redis (we were formerly using lettuce). Pretty simple mechanism, there is an anotation we use on endpoints which is responsible to invoke the redis-client (whatever…

Leonardo
- 1
- 1