Skip to content

Instantly share code, notes, and snippets.

@jb-gomez
jb-gomez / pg_pub_sub.rb
Created January 2, 2020 16:16 — forked from chsh/pg_pub_sub.rb
PostgreSQL LISTEN/NOTIFY example for ruby
#
# A:
# pubsub = PgPubSub.new('channelname')
# pubsub.subscribe do |data|
# puts "data: #{data} is coming!"
# end
#
# B:
# pubsub = PgPubSub.new('channelname')
# pubsub.publish("hello world")