phoenix_pubsub_redis
phoenix_pubsub_redis copied to clipboard
The Redis PubSub adapter for the Phoenix framework
redix doesn't allow to connect to sentinel when host or password is set: https://github.com/whatyouhide/redix/blob/44638994386a9372c2a270f8faba66d57c58f758/lib/redix/start_options.ex#L83-L85
We use the `REDIS_URL` env var on Heroku to define our Redis URL. When SSL is enabled this is indicated by the `rediss` scheme in the URL. As it stands,...
Got slightly confused during the install process because this was outdated
This allows Github to detect the license.
If you add ```elixir {Phoenix.PubSub, adapter: Phoenix.PubSub.Redis} ``` to your list of child applications, and then try to start the application in development mode (for example with `iex -S mix`),...
## Motivation Recently I was setting up `phoenix_pubsub_redis` in our application, and I incurred in a few problems connecting to ElastiCache redis. The most confusing thing was that I was...
At the moment it is only possible to specify a username to authenticate to the redis server as part of the `url` option. Unfortunately, due to the [`Keyword.take(opts, @redis_opts)` at...
I set up the redis adapter according to the doc and deployed it to Heroku where we have 2 dynos running like: ```bash elixir --sname server -S mix phx.server ```...
I had a need to share the redis server across a couple of different applications, so I added an option to change the key prefix used with redis so they...
Here I'm proposing an addition to the configuration options for `Phoenix.PubSub.Redis` to make it possible to specify the Redis channel for pubsub directly. ## Motivation Currently the Redis channel name...