jedis icon indicating copy to clipboard operation
jedis copied to clipboard

Redis Java client

Results 259 jedis issues
Sort by recently updated
recently updated
newest added

https://redis.io/commands/ft.aggregate/

enhancement

New changes for [the RedisBloom 2.4 milestone](https://github.com/RedisBloom/RedisBloom/pull/487) mean we have API changes to make prior to the next milestone.

feature

### Expected behavior For listener to get unsubscribed ### Actual behavior Going into stackoverfliw ``` java.lang.StackOverflowError: null at java.base/java.security.AccessController.doPrivileged(Native Method) at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:353) at java.base/java.net.Socket.connect(Socket.java:615) at redis.clients.jedis.DefaultJedisSocketFactory.createSocket(DefaultJedisSocketFactory.java:80) at redis.clients.jedis.Connection.connect(Connection.java:226) at redis.clients.jedis.BinaryClient.connect(BinaryClient.java:140)...

https://github.com/redis/jedis/issues/3042 - Added support for TDIGEST commands

### Feature request to add a prometheus collector in jedis Add a implementation of [Collector](https://github.com/prometheus/client_java/blob/master/simpleclient/src/main/java/io/prometheus/client/Collector.java) in `src/main/java/redis/clients/jedis/metrics` package or utils maybe Basically a 1:1 clone of what HikariCP ships with...

discussion needed

RediSearch now supports another option (WITHSUFFIXTRIE) during index creation. We need to extend the [FT.CREATE](https://sourcegraph.com/github.com/RediSearch/RediSearch/-/blob/docs/commands/ft.create.md) calls to support this

enhancement

### Expected behavior The values returned by the `zdiff()`, `zinter()` and `zunion()` methods should preserve the ordering of the returned members. ### Actual behavior The return type of `zdiff()`, `zinter()`...

BUG

### Expected behavior Pipeline's responses contain the text retrieved by Redis with a generic JedisDataException as a text. Would be better to throw specific errors for OOM for example and...