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

### Expected behavior Redis `SMEMBERS` returns an array of values for the given set. While in Jedis `smembers` method returns a `SET` of values going by interface signature. So, as...

discussion needed

when user use 127.0.0.1 ip to connect to redis. Jredis throw exception.the code should enable calling redis by 127.0.0.1 and localhost ip.

See https://github.com/xetorthio/jedis/issues/1855

### Expected behavior JedisSlotBasedConnectionHandler.getConnectionFromSlot() should always return a connection ### Actual behavior Sometimes - probaby during renewSlotCache() - no connection will be returned - even if the cluster is healthy....

JedisSentinelPool parses the set of sentinel addresses (as string) and converts them to HostAndPort instances. However, it always attempts to parse the port value and fails when no port is...

will not fix

Relevant issue: #566 Due to ambiguity issue Scala users should use workaround like... ``` val stringArray = Array[String]("mystring") j.del(stringArray:_*) ``` In order to avoid this issue, as I stated from...

discussion needed

Despite having the redis­cli feeling in java it would be great to have the more high level feeling of treating the cluster as one distributed redis instance allowing - Possibility...

discussion needed
stale

`JedisCluster` currently exposes nodes information through the `getClusterNodes` method but this returns very limited information about node information (only host and port). It'd be nice if we could return some...

stale

From #607, I've changed interfaces name but reverted for initiating discussion about it. MultiKeyBinaryRedisPipeline -> MultiKeyBinaryCommandsPipeline There're lots of inconsistent interface names because of not having prefix / postfix rules...

stale

Supplying a custom JedisProtocol makes it possible to implement custom logging or monitoring or the execution of redis commands. For example, the following `JedisProtocol` customization would catch and log all...

DISCUSSION NEEDED