vertx-redis-client icon indicating copy to clipboard operation
vertx-redis-client copied to clipboard

Redis client for Vert.x

Results 59 vertx-redis-client issues
Sort by recently updated
recently updated
newest added

### Version 4.3.5 ### Context I encountered an authentication issue when connecting to a [Predixy](https://github.com/joyieldInc/predixy)-proxied Redis cluster. ### Do you have a reproducer? No, but could provide one if requested....

bug

Like other resources add option to share Redis. Example PG pool sharing https://vertx.io/docs/vertx-pg-client/java/#_pool_sharing or JDBC https://vertx.io/docs/vertx-jdbc-client/java/#_using_default_shared_data_source

enhancement

From discussion here https://github.com/vert-x3/vertx-redis-client/pull/448#discussion_r1634373505 and need to determine slot distribution offline I propose to expose a function that will determine the correct node/slot to which cluster server command should be...

enhancement

I am experiencing some issues in Redis Cluster mode, particularly with the MOVED error. It is still unclear to me how to transparently handle this when the cluster is unbalanced....

bug

As you know, Redis has discontinued the Graph module and it has been "forked" into [FalkorDB](https://www.falkordb.com/). For now, the `vertx-redis-client` continues to work ok, as does the Quarkus Redis Extension...

enhancement

Includes other changes, especially: - introduced dedicated `RedisReplicationConnectOptions` (internal-only, but important anyway) - fixed sending the `READONLY` command to replicas (only in the cluster mode, not in replication mode) -...

The `RedisOptions` class has a field `endpoints` of type `List` for which multiple accessors and mutators exist: - `getEndpoints()`: the canonical getter - `setEndpoints()`: the canonical setter - `getEndpoint()`: returns...

It's nice to use ping command to check if the connection is still alive. - It almost works currently, except - RedisConnection.toReceiveChannel is broken. [https://github.com/vert-x3/vertx-redis-client/blob/e3731a3e8a4d61beb4d2e03a223621a7c7252af2/src/main/java/io/vertx/redis/client/impl/RedisStandaloneConnection.java#L378](https://github.com/vert-x3/vertx-redis-client/blob/e3731a3e8a4d61beb4d2e03a223621a7c7252af2/src/main/java/io/vertx/redis/client/impl/RedisStandaloneConnection.java#L378) 1. run in pubsub mode...

enhancement