redo icon indicating copy to clipboard operation
redo copied to clipboard

pipelined erlang redis client

Results 5 redo issues
Sort by recently updated
recently updated
newest added

Here [redo:handle_info](https://github.com/jkvor/redo/blob/7c7eaef4cd65271e2fc4ea88587e848407cf0762/src/redo.erl#L280) redo stops with normal reason in case of tcp error. However in case of tcp_closed if reconnect is false it stops with a different reason. It can cause...

So I didn't reinvent the wheel or anything like that, all I ended up doing was duplicating the subscribe function and make is send a psubscribe command to redis.

Error reported by Dialyzer when I was using `redo` as dependency.

Sent: ``` *3 $8 SENTINEL $6 SLAVES $18 sentinel_sentinel1 ``` Got: ``` *2 *38 $4 name $14 127.0.0.1:6377 $2 ip $9 127.0.0.1 $4 port $4 6377 $5 runid $40 fdde50c3d85aec08d89d9ff30d7026e26d77ec4f...

This patch makes redo keep reconnecting even if Redis server is not ready when redo:init is called.