2012-10-14 19:07:37 -04:00
|
|
|
hequire 'connection_pool'
|
2012-03-31 15:45:24 -04:00
|
|
|
require 'redis'
|
2012-02-08 17:43:57 -05:00
|
|
|
require 'redis/namespace'
|
|
|
|
|
|
|
|
module Sidekiq
|
|
|
|
class RedisConnection
|
2012-02-10 01:00:40 -05:00
|
|
|
def self.create(options={})
|
2012-10-14 17:58:20 -04:00
|
|
|
url = options[:url] || determine_redis_provider || 'redis://localhost:6379/0'
|
2012-07-19 12:04:15 -04:00
|
|
|
driver = options[:driver] || 'ruby'
|
2012-04-06 12:43:02 -04:00
|
|
|
# need a connection for Fetcher and Retry
|
2012-04-09 11:57:47 -04:00
|
|
|
size = options[:size] || (Sidekiq.server? ? (Sidekiq.options[:concurrency] + 2) : 5)
|
2012-04-06 12:43:02 -04:00
|
|
|
|
2012-04-03 23:00:20 -04:00
|
|
|
ConnectionPool.new(:timeout => 1, :size => size) do
|
2012-07-19 12:04:15 -04:00
|
|
|
build_client(url, options[:namespace], driver)
|
2012-03-14 00:19:46 -04:00
|
|
|
end
|
2012-02-08 17:43:57 -05:00
|
|
|
end
|
|
|
|
|
2012-07-19 12:04:15 -04:00
|
|
|
def self.build_client(url, namespace, driver)
|
|
|
|
client = Redis.connect(:url => url, :driver => driver)
|
2012-02-08 17:43:57 -05:00
|
|
|
if namespace
|
2012-02-10 01:00:40 -05:00
|
|
|
Redis::Namespace.new(namespace, :redis => client)
|
2012-02-08 17:43:57 -05:00
|
|
|
else
|
2012-02-10 01:00:40 -05:00
|
|
|
client
|
2012-02-08 17:43:57 -05:00
|
|
|
end
|
|
|
|
end
|
2012-02-10 01:00:40 -05:00
|
|
|
private_class_method :build_client
|
2012-10-14 17:58:20 -04:00
|
|
|
|
2012-10-14 19:07:37 -04:00
|
|
|
# Not public
|
2012-10-14 17:58:20 -04:00
|
|
|
def self.determine_redis_provider
|
2012-10-14 19:07:37 -04:00
|
|
|
return ENV['REDISTOGO_URL'] if ENV['REDISTOGO_URL']
|
|
|
|
provider = ENV['REDIS_PROVIDER'] || 'REDIS_URL'
|
2012-10-14 17:58:20 -04:00
|
|
|
ENV[provider]
|
|
|
|
end
|
2012-02-08 17:43:57 -05:00
|
|
|
end
|
|
|
|
end
|