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

Does this library support transactions? I see it in the async codebase, but not here. Thanks!

I am having trouble trying to disconnect from Redis. Here is what I am doing ``` scala> import com.redis._ import com.redis._ scala> val r = new RedisClient("localhost", 4518) r: com.redis.RedisClient...

when running unstable branch redis in cluster mode configured locally with 6 nodes, 3 masters and 3 slaves as described here: http://redis.io/topics/cluster-tutorial replication steps: 1. as in the example create...

Dear All, i already used redis-cluster, but always get exception every put to redis-cluster `java.lang.Exception: MOVED 2340 10.2.15.40:6301` val nodes = Array( ClusterNode("node1", "127.0.0.1, 6301), ClusterNode("node2", "127.0.0.1", 6302) ) val...

I am trying to do two things: 1. Simple set operations, where I want to set key and value as a text file. For example my key:`A100` and its value:`A100.obj`...

I have facing issue hostname can't be null. My source code looks like ``` var keys_data = redis_client.smembers("get_info_data:"+"4536").getOrElse(Seq()).toSeq.map(d=> d.getOrElse(EMPTY)).filter(s=> s!=EMPTY) keys_data.map{info => logger.info(info) redis_client.zscan("my_set:"+info,1,"*",10) } ``` ### I got keys_data...

This is related to #128 and #129. Using `"net.debasishg" %% "redisclient" % "3.4"`. **Case 1:** trying explicitly to specify return type. `val result = redisPool.withClient(_.evalBulk[Int]("return 1", List.empty, List.empty))` Does not...

Would this be a welcome change? The current version used is 1.6. Version 2.x (2.5 is most recent) has some performance and scalability improvements. I looked over [the docs](https://commons.apache.org/proper/commons-pool/), and...

`SET` arguments, as per Redis documentation, are: ``` SET key value [EX seconds] [PX milliseconds] [NX|XX] ``` This means that `NX` or `XX` is optional, but current the implementation forces...