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

Bumps [maven-failsafe-plugin](https://github.com/apache/maven-surefire) from 2.22.0 to 2.22.2. Commits d96b95c [maven-release-plugin] prepare release surefire-2.22.2 4a2aafc Remove Travis file 7b9ec3f Remove JUnit SNAPSHOT argument from IT 18b4078 [SUREFIRE-1614] JUnit Runner that writes to...

dependencies

Bumps [junit](https://github.com/junit-team/junit4) from 4.13.1 to 4.13.2. Release notes Sourced from junit's releases. JUnit 4.13.2 Please refer to the release notes for details. Commits 05fe2a6 [maven-release-plugin] prepare release r4.13.2 ff57344 Add...

dependencies

### Version 4.2.5 ### Context When connecting to redis using sentinel type, three connections are created: 1. a connection with sentinel address to get the master address, 2. a connection...

bug

When occur error on 2nd connection with sentinel, error is not propagate https://github.com/vert-x3/vertx-redis-client/blob/502a1c16a2f2ae2cfc0d25defb23fdc3543753a6/src/main/java/io/vertx/redis/client/impl/RedisSentinelClient.java#L78 ``` createConnectionInternal(options, RedisRole.SENTINEL, create -> { if (create.failed()) { LOG.error("Redis PUB/SUB wrap failed.", create.cause()); return; } ```...

bug

### Version 3.9.10 / 3.9 branch ### Context In case Redis has username and password, when connecting with other than the default user, ConnectionManager is not passing username to the...

bug

version 4.1.2 The performance of Redis client in Load is very pure. Lot of errors: 1. java.io.IOException: Broken pipe 2. io.netty.channel.StacklessClosedChannelException: null 3. java.net.SocketException: Connection reset Following test: ``` @Test...

bug

#### Describe the feature RedisClusterClient has poor performance in high concurrency scenarios. Beacuase RedisClusterClient sends `CLUSTER SLOTS` to endpoints[0] for slots query every time it call `connect()` This will have...

enhancement

When I wrote the following code and found that a large amount of data entered, it could not work properly. The cause is as follows: Future{cause=Connection pool reached max wait...

question

#### Describe the feature While using the redis client there might be cases where sent Commands will hang because of the network issue or load issue on Redis server. In...

enhancement

#### Read me Read this first before creating an issue: - do not use this issue tracker to ask questions, instead use one of these [channels](https://vertx.io/community/). Questions will likely be...

enhancement