Class: Sidekiq::RedisConnection

Inherits:
Object
  • Object
show all
Defined in:
lib/sidekiq/redis_connection.rb

Class Method Summary collapse

Class Method Details

.create(options = {}) ⇒ Object



7
8
9
10
11
12
13
14
15
16
17
# File 'lib/sidekiq/redis_connection.rb', line 7

def self.create(options={})
  url = options[:url] || determine_redis_provider || 'redis://localhost:6379/0'
  driver = options[:driver] || 'ruby'
  # need a connection for Fetcher and Retry
  size = options[:size] || (Sidekiq.server? ? (Sidekiq.options[:concurrency] + 2) : 5)
  namespace = options[:namespace] || Sidekiq.options[:namespace]

  ConnectionPool.new(:timeout => 1, :size => size) do
    build_client(url, namespace, driver)
  end
end

.determine_redis_providerObject

Not public



30
31
32
33
34
# File 'lib/sidekiq/redis_connection.rb', line 30

def self.determine_redis_provider
  return ENV['REDISTOGO_URL'] if ENV['REDISTOGO_URL']
  provider = ENV['REDIS_PROVIDER'] || 'REDIS_URL'
  ENV[provider]
end