scala-redis
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.
Hello, i have a code which uses RedisClientPool, but it does not integrate any kind of authentication yet. But now we need to change it into using authentication. So i...
I'm investigating an issue similar to Issue #282 and decided to add a unit test that demonstrates how the RedisClientPool supports Authentication.
I think the implementation of many of these methods would be fairly straightforward. I was able to easily extend RedisClient and add them myself, but the issue is using those...
I have a function like: ```scala def write(redisClient: RedisClient) = { redisClient.pipeline { pipe => pipe.set("k1", "v1") pipe.set("k2", "v2") } } ``` Given that the type of `pipe` is `RedisClient.this.PipelineClient`...
Hello, I'm quite new to Scala and Redis in general and could use some help. Here is the situation, a friend of mine sadly passed away and we were working...
Does scala-redis support server-assisted client side caching as described on https://redis.io/topics/client-side-caching ?
**Describe the bug** javax.ws.rs.ProcessingException: org.newsclub.net.unix.AFUNIXSocketException: Cannot find method "setCreated" in java.net.Socket. Unsupported JVM? **To reproduce** $ sbt sbt:RedisClient> update sbt:RedisClient> test **Unexpected behavior** logs: ```shell [info] PoolSpec: [info] com.redis.PoolSpec ***...
I need to do something like this ``` case class Product(id: String, v: Int, w: Long) connection.hgetall[Task, String, Product](...) ```
Since Redis `3.0.3` the `EXISTS` command accepts multiple keys and returns the total count of existing keys (with no deduplication).