Popularity
4.1
Stable
Activity
0.0
Stable
27
6
3

Monthly Downloads: 0
Programming language: Elixir
License: MIT License

phoenix_pubsub_postgres alternatives and similar packages

Based on the "Framework Components" category.
Alternatively, view phoenix_pubsub_postgres alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of phoenix_pubsub_postgres or a related project?

Add another 'Framework Components' Package

README

PhoenixPubSubPostgres

This package provides postgres adapater for Phoenix's Pub/Sub channels.

Demo

Open pgchat.opendrops.com in two different browsers windows and start sending some messages. The message passing is handled by postgres's built-in pubsub support

Demo app source

Source code of the demo app is available at http://github.com/opendrops/pgchat-demo-app

-

How to use

Add phoenix_pubsub_postgres to your mix deps

defp deps do
  [{:phoenix, github: "phoenixframework/phoenix", override: true},
   {:phoenix_pubsub_postgres, "~> 0.0.2"},
   {:postgrex, ">= 0.0.0"},
   {:cowboy, "~> 1.0"}]
end

To use Postgres as your PubSub adapter, simply add it to your Endpoint's config and modify it as needed.

config :my_app, MyApp.Endpiont,
  ...
  pubsub: [name: MyApp.PubSub,
           adapter: PhoenixPubSubPostgres,
           hostname: "localhost",
           database: "myapp_db_env",
           username: "postgres",
           password: "postgres"]