Bill Anderson

Results 17 comments of Bill Anderson

The solution in that example is not a good one really as it limits you to one instance per Docker host.

Ultimately to run properly in a Docker environment Disque needs the same thing Redis needs. See [this blog post](http://www.iamtherealbill.com/2015/10/redis-configuration-improvements/l) describing a "post-start initialization state" for the details. The problems are...

@antirez So are you saying the Redis Cluster (unstable) method is to use the HELLO command to discover what the cluster bus port is instead of a port offset? If...

I like this idea, and I've been thinking about it today. It will require some refactoring I think in order to enable it. RS will need, essentially, the ability to...

Question: If we're using sentinel. Why have Redis server entries in the config when we should be getting that from Sentinel?

Just to be clear, do I understand correctly that you are publishing messages by announcing them in a pub channel, and then adding them to a single redis list? If...

Nice find. Would an alternate fix be to have the code which calls INFO first call a PING? In other words sentinelSendPing should always be called before a PING. It...