Accessing redis cluster from Phoenix/Elixir App

A hit or miss suggestion if you want to try:

Try adding socket_opts like this:

Redix.start_link(
  host: "redis://vodon-redis.internal/1",
  socket_opts: [:inet6]
)

Ref: https://github.com/whatyouhide/redix/issues/222