2012-02-08 17:43:57 -05:00
|
|
|
require '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={})
|
|
|
|
url = options[:url] || ENV['REDISTOGO_URL'] || 'redis://localhost:6379/0'
|
2012-03-14 12:56:13 -04:00
|
|
|
ConnectionPool::Wrapper.new(:timeout => 1, :size => (options[:size] || Sidekiq.options[:concurrency] || 25)) do
|
2012-03-14 00:19:46 -04:00
|
|
|
build_client(url, options[:namespace])
|
|
|
|
end
|
2012-02-08 17:43:57 -05:00
|
|
|
end
|
|
|
|
|
2012-02-10 01:00:40 -05:00
|
|
|
def self.build_client(url, namespace)
|
|
|
|
client = Redis.connect(:url => url)
|
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-02-08 17:43:57 -05:00
|
|
|
end
|
|
|
|
end
|