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

Redis client for Vert.x

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

#### Describe the feature Currently, when setting the client to 'REPLICATION' mode, it performs an INFO command to 'master' and extracts its 'slaves' IPs from the reply. Using this with...

enhancement

### Version 4.3.3-SNAPSHOT ### Context Previously scan while using Redis cluster was disabled - see this commit that recently enabled it: https://github.com/vert-x3/vertx-redis-client/commit/f43502bcf1e63566fc304a3d3f3349329989c2d1. ### Do you have a reproducer? A simple...

bug

Bumps [testcontainers](https://github.com/testcontainers/testcontainers-java) from 1.17.2 to 1.17.3. Release notes Sourced from testcontainers's releases. 1.17.3 What's Changed 🚀 Features & Enhancements modules/clickhouse: JDBC driver name changed, liveness port (#5474) @​anavrotski Elasticsearch: Fix...

dependencies
java

#### Describe the feature Add a way to know what kind of type MultiType is (list or map) Currently you can only do that through reflection (by checking the map...

enhancement

## Motivation Hey, I'm using `vertx-redis-client` in my project and I mistook the connection string from something like `redis://domain:port` to `redis://:domain:port`. The weird thing is that the connection string with...

Motivation: Expose more Command create arguments to let user create custom command. Or further, do you think we should a this? Please: ``` static Command create(String command, int arity, Boolean...

Redis doesn't allow `null` in requests. Currently for compatibility reasons we encode `null` as the String `"null"`. In order to make the behavior consistent with `jedis` the official client, we...

enhancement

#### Describe the feature **Refresh connections to redis cluster whenever there is a change in cluster** Current redis client implementation creates connections to redis cluster and uses them to send...

enhancement

Signed-off-by: Paulo Lopes Motivation: Redis is now distributing redis + extensions as "redis stack" this PR adds a simple wrapper to allow users to use the API in a more...

enhancement