V
V
Could you try to replace disconnect by stop ?
Yeah you need to make that line https://github.com/etaty/rediscala/blob/ecef67f9e5fa5e2e3b41fe6640d4824dc9b161f1/src/main/scala/redis/Redis.scala#L150 a parameter of SentinelMonitoredRedisClient `createClient: (String, Int) => RedisClient` would you like to create a pull request?
http://redis.io/topics/cluster-spec
Rediscala use akka and akka-io for the TCP/IP level And I don't think there is something for akka. Moreover, people using Redis in production have multiple servers so "unix socket"...
No idea I would launch a `redis-cli monitor` in another terminal to see the commands http://redis.io/commands/MONITOR
Thanks The fact that `Infinity` is sent, is wrong. We have a specific ByteStringDeserializer for Redis Long, I guess we need a serializer too.
Yes i noticed it during my tests, at some point the scale is exponential (bad). I suspected the thread scheduler to be the limitation. Or the way Future.sequence works. If...
Well it was an experiment, no something ready for prod and integrated with rediscala, it was also a year ago.
Yes it is much more fair Do you have a link to the conversation with akka team ? (is it public ?)
You Could use a "DummyRedisClient" I mean just send Promise to an actor, and the actor complete the Promise. You could use that base to compare when you add an...