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

Implementation of a non blocking Redis client in Scala using Akka IO

Results 35 scala-redis-nb issues
Sort by recently updated
recently updated
newest added

Is there a reason why timeout is not defined in RedisClientSettings. It will be good to have it there as it can provide a single place for all configurations.

We discussed this a bit in #74, but it seems a reconnection policy should apply to failed connection attempts. If a server is partitioned for longer than the first attempt,...

There's a mismatch between the project name and the Github repo name. So how about renaming it as Github provides automatic redirection [1] from the old url either for web...

In the the event of a disconnection, pending request Futures should be failed with a disconnection exception. Right now they will just hang until the timeout expires. I'm not familiar...

From my perspective good idea to implement RedisClient Pool mechanism on top of Akka Router with possibility to define resizer. This will give ability to define pool configuration in config...

enhancement

It's a bit annoying to start and stop Redis instance by hand for testing. Furthermore, it makes reconnection or cluster testing much harder. https://github.com/kstyrc/embedded-redis provides the required functionality out of...

I want to write a function which retries a transaction a fixed number of times. I wanted it to have a signature like this: ``` scala def retryingTransaction(count: Int)(f: RedisOps...

Changes in c7bedc5 restrict Redis string ops to Scala strings. Redis strings and keys are "binary safe, [... and] can contain any kind of data". Passing in serializable objects as...

When I attempt to return a numeric value from a Lua script, I arrive at the following exception. Best, -Eric ``` scala scala> :paste // Entering paste mode (ctrl-D to...

enhancement