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



10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# File 'lib/sidekiq/redis_connection.rb', line 10

def create(options={})
  options = options.symbolize_keys

  options[:url] ||= determine_redis_provider

  size = options[:size] || (Sidekiq.server? ? (Sidekiq.options[:concurrency] + 5) : 5)

  verify_sizing(size, Sidekiq.options[:concurrency]) if Sidekiq.server?

  pool_timeout = options[:pool_timeout] || 1
  log_info(options)

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