Sha256: d0daf21355c77774ffcfd5af2044d7490a09ff0043623f3fafde4f3d40bf5b8b

Contents?: true

Size: 1.73 KB

Versions: 6

Compression:

Stored size: 1.73 KB

Contents

require 'connection_pool'
require 'redis'

module Sidekiq
  class RedisConnection
    class << self

      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

      private

      def build_client(url, namespace, driver, network_timeout)
        client = Redis.new client_opts(url, driver, network_timeout)
        if namespace
          require 'redis/namespace'
          Redis::Namespace.new(namespace, :redis => client)
        else
          client
        end
      end

      def client_opts(url, driver, timeout)
        if timeout
          { :url => url, :driver => driver, :timeout => timeout }
        else
          { :url => url, :driver => driver }
        end
      end

      def log_info(url, options)
        opts = options.dup
        opts.delete(:url)
        if Sidekiq.server?
          Sidekiq.logger.info("Booting Sidekiq #{Sidekiq::VERSION} using #{url} with options #{opts}")
        else
          Sidekiq.logger.info("#{Sidekiq::NAME} client using #{url} with options #{opts}")
        end
      end

      def determine_redis_provider
        # REDISTOGO_URL is only support for legacy reasons
        return ENV['REDISTOGO_URL'] if ENV['REDISTOGO_URL']
        provider = ENV['REDIS_PROVIDER'] || 'REDIS_URL'
        ENV[provider]
      end

    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
sidekiq-2.15.2 lib/sidekiq/redis_connection.rb
sidekiq-2.15.1 lib/sidekiq/redis_connection.rb
sidekiq-2.15.0 lib/sidekiq/redis_connection.rb
sidekiq-2.14.1 lib/sidekiq/redis_connection.rb
sidekiq-2.14.0 lib/sidekiq/redis_connection.rb
sidekiq-2.13.1 lib/sidekiq/redis_connection.rb