scala-redis icon indicating copy to clipboard operation
scala-redis copied to clipboard

A scala library for connecting to a redis server, or a cluster of redis nodes using consistent hashing on the client side.

Results 78 scala-redis issues
Sort by recently updated
recently updated
newest added

Pubsub trait has flag variables 'pubSub'. This variable is still true after Consumer thread finished. I think it should be false at least when unsubscribed all.

It seems is some cases https://github.com/debasishg/scala-redis/blob/master/src/main/scala/com/redis/RedisProtocol.scala#L68 can produce a null, don't know whether it means that there is no such a key, or whether it is a bug.

The code for `llen` returns a `Long`, but the arguments for `lrange` are `Int`. This means that if you query for the length of a list, it is possible that...

In my SampleTest application, I design the code like after receiving new search pattern from the client the StreamingContext should be stoped (ssc.stop()) and again start with the newly assigned...

Redis supports master slave configurations and manual failover. Unfortunately, automated failover is unlikely to be added until the RedisCluster project is live for a while. In the meantime, one great...

What is a preferable logic to detect connection lost and reconnect to server? It seems connected and connect methods aren't working as I expect. Surprisingly, select method works and reconnects...

When using redisCluster with a list of non-local node, rediscluster will still try and connect locally. ``` val redisCluster = new RedisCluster(Seq("192.168.0.1:6379"): _*) { val keyTag: Option[KeyTag] = Some(NoOpKeyTag) }...

> Starting with Redis 2.6.12 SET supports a set of options that modify its behavior: > EX seconds -- Set the specified expire time, in seconds. > PX milliseconds --...