Sha256: cff73794e85fbef674bec50c8be59804d3ce4f193e78df8474967855ab1d330d
Contents?: true
Size: 1015 Bytes
Versions: 12
Compression:
Stored size: 1015 Bytes
Contents
require 'connection_pool' require 'redis' require 'redis/namespace' module Sidekiq class RedisConnection 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) ConnectionPool.new(:timeout => 1, :size => size) do build_client(url, options[:namespace], driver) end end def self.build_client(url, namespace, driver) client = Redis.connect(:url => url, :driver => driver) if namespace Redis::Namespace.new(namespace, :redis => client) else client end end private_class_method :build_client # Not public def self.determine_redis_provider return ENV['REDISTOGO_URL'] if ENV['REDISTOGO_URL'] provider = ENV['REDIS_PROVIDER'] || 'REDIS_URL' ENV[provider] end end end
Version data entries
12 entries across 12 versions & 1 rubygems