Sha256: 030f95b76766413f3d075e9c2e4fab6c2ca0e87dfa3f689e181661ca5d346418
Contents?: true
Size: 815 Bytes
Versions: 8
Compression:
Stored size: 815 Bytes
Contents
require 'connection_pool' require 'redis' require 'redis/namespace' module Sidekiq class RedisConnection def self.create(options={}) url = options[:url] || ENV['REDISTOGO_URL'] || '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 end end
Version data entries
8 entries across 8 versions & 1 rubygems