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



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

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

  log_info(url, options)

  ConnectionPool.new(:timeout => pool_timeout, :size => size) do
    build_client(url, options[:namespace], options[:driver] || 'ruby', options[:network_timeout])
  end
end