1
0
Fork 0
mirror of https://github.com/mperham/sidekiq.git synced 2022-11-09 13:52:34 -05:00
mperham--sidekiq/lib/sidekiq/redis_connection.rb

36 lines
1 KiB
Ruby
Raw Normal View History

2012-10-14 16:54:34 -07:00
require 'connection_pool'
2012-03-31 12:45:24 -07:00
require 'redis'
module Sidekiq
class RedisConnection
2012-02-09 22:00:40 -08:00
def self.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)
2012-04-03 20:00:20 -07:00
ConnectionPool.new(:timeout => 1, :size => size) do
2013-03-08 21:31:57 -08:00
build_client(url, options[:namespace], options[:driver] || 'ruby')
end
end
def self.build_client(url, namespace, driver)
client = Redis.connect(:url => url, :driver => driver)
if namespace
2013-03-08 21:31:57 -08:00
require 'redis/namespace'
2012-02-09 22:00:40 -08:00
Redis::Namespace.new(namespace, :redis => client)
else
2012-02-09 22:00:40 -08:00
client
end
end
2012-02-09 22:00:40 -08:00
private_class_method :build_client
# Not public
def self.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