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
26
27
28
29
30
31
32
33
34
35
36
37
# File 'lib/sidekiq/redis_connection.rb', line 10

def create(options = {})
  symbolized_options = options.transform_keys(&:to_sym)

  if !symbolized_options[:url] && (u = determine_redis_provider)
    symbolized_options[:url] = u
  end

  size = if symbolized_options[:size]
    symbolized_options[:size]
  elsif Sidekiq.server?
    # Give ourselves plenty of connections.  pool is lazy
    # so we won't create them until we need them.
    Sidekiq.options[:concurrency] + 5
  elsif ENV["RAILS_MAX_THREADS"]
    Integer(ENV["RAILS_MAX_THREADS"])
  else
    5
  end

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

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

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