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

Hello I would like to add the SCAN command (Redis >= 2.8). I tried to implement it based on the implementation of the other commands. If there is something you...

I want to connect with redis cluster of 3 nodes, How can I connect ?

net.debasishg#redisreact_2.12;0.8: not found .. Does it really supports scala 2.12 ?

Hi, This library is great and hoping to put it into full use shortly. However I am using behind a Factory pattern to abstract away the cache implementation (so we...

PubSub functionality on top of Akka Actors. (This means separate RedisClient will be used for Subscriber). For consumer register separate custom actor that will receive messages. something like this (new...

enhancement

Authenticator.setDefault(new Auth(username, password)) is not working for secured url access. (i.e. RedisToGo hosted service url is something like redis://username:[email protected]:port) Is there any workaround for this?

Hi, I was looking at the API compared to the scala-redis github repository and noticed that this one does not support Binary Keys. Just wanted to file this as a...

The `apply` method within the RedisClient object is not thread-safe. It uses the thread-unsafe `Iterator.next` method to create a default name. This results in name collisions in Akka. An example...