Sha256: 2419aef37a295d40477e40e9d287a3262dc2eb328729a3f8a9aad2bc5abe32f6

Contents?: true

Size: 1.6 KB

Versions: 7

Compression:

Stored size: 1.6 KB

Contents

# encoding: UTF-8

if defined? Redis

	Plezi::Settings.redis_channel_name = 'appsecret'

	# ## Plezi Redis Automation
	# ## ====
	# ##
	# ## Sets up Plezi to use Radis broadcast.
	# ##
	# ## If Plezi Redis Automation is enabled:
	# ## Plezi creates is own listening thread that listens for each Controller class that broadcasts using Redis.
	# ## (using the Controller.redis_connection and Controller.redis_channel_name class methods)
	# ##
	# ## Only one thread will be created and initiated during startup (dynamically created controller routes might be ignored).
	# ##
	# ## this overrides the default Controller#broadcast method which is very powerful but
	# ## is limited to one process.
	# ##
	# ENV['PL_REDIS_URL'] ||= ENV['REDIS_URL'] || ENV['REDISCLOUD_URL'] || ENV['REDISTOGO_URL'] || "redis://username:password@my.host:6389"


	# ## OR, write your own custom Redis Automation here
	# ## ====
	# ##
	# ## create a listening thread - rewrite the following code for your own Redis tailored solution.
	# ##
	# ## the following is only sample code for you to change:
	# RADIS_CHANNEL = 'appsecret'
	# RADIS_URI = URI.parse(ENV['REDIS_URL'] || ENV['REDISCLOUD_URL'] || "redis://username:password@my.host:6389")
	# RADIS_CONNECTION = Redis.new(host: RADIS_URI.host, port: RADIS_URI.port, password: RADIS_URI.password)
	# RADIS_THREAD = Thread.new do
	# 	Redis.new(host: RADIS_URI.host, port: RADIS_URI.port, password: RADIS_URI.password).subscribe(RADIS_CHANNEL) do |on|
	# 		on.message do |channel, msg|
	# 			msg = JSON.parse(msg)
	# 			# do stuff, i.e.:
	# 			# Plezi.run(msg) { |m| Plezi.info m.to_s }
	# 		end
	# 	end
	# end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
plezi-0.12.6 resources/redis_config.rb
plezi-0.12.5 resources/redis_config.rb
plezi-0.12.4 resources/redis_config.rb
plezi-0.12.3 resources/redis_config.rb
plezi-0.12.2 resources/redis_config.rb
plezi-0.12.1 resources/redis_config.rb
plezi-0.12.0 resources/redis_config.rb