Sha256: d000d65758fb261ea8edcd8e71a895d8e6699f486ee4b4cf8fd6f73648bfb127

Contents?: true

Size: 1.54 KB

Versions: 5

Compression:

Stored size: 1.54 KB

Contents

# encoding: UTF-8

if defined? Redis

	# ## 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 messages and broadcasts using Redis.
	# ##
	# ## Only one thread will be created and initiated during startup (dynamically created controller routes might be ignored).
	# ##
	# `redis_channel_name` should be set when using the Placebo API.
	# (otherwise, it's only optional, as the automatic settings are good enough)
	Plezi::Settings.redis_channel_name = 'appsecret'
	ENV['PL_REDIS_URL'] ||= ENV['REDIS_URL'] ||
							ENV['REDISCLOUD_URL'] ||
							ENV['REDISTOGO_URL'] || 
							nil # use: "redis://username:password@my.host:6389"


	# ## OR, write your own custom Redis implementation 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

5 entries across 5 versions & 1 rubygems

Version Path
plezi-0.12.11 resources/redis_config.rb
plezi-0.12.10 resources/redis_config.rb
plezi-0.12.9 resources/redis_config.rb
plezi-0.12.8 resources/redis_config.rb
plezi-0.12.7 resources/redis_config.rb