Class: Periodically::RedisConnection

Inherits:
Object
  • Object
show all
Defined in:
lib/periodically/redis.rb

Class Method Summary collapse

Class Method Details

.create(options = {}) ⇒ Object



10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# File 'lib/periodically/redis.rb', line 10

def create(options = {})
  options.keys.each do |key|
    options[key.to_sym] = options.delete(key)
  end

  options[:id] = "Periodically-PID-#{::Process.pid}" unless options.key?(:id)
  options[:url] ||= determine_redis_provider

  size = if options[:size]
    options[:size]
  elsif ENV["RAILS_MAX_THREADS"]
    Integer(ENV["RAILS_MAX_THREADS"])
  else
    5
  end

  pool_timeout = options[:pool_timeout] || 1

  ConnectionPool.new(timeout: pool_timeout, size: size) do
    build_client(options)
  end
end