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

25 lines
658 B
Ruby
Raw Normal View History

require 'connection_pool'
2012-03-31 15:45:24 -04:00
require 'redis'
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'
ConnectionPool::Wrapper.new(:timeout => 1, :size => (options[:size] || Sidekiq.options[:concurrency] || 25)) do
build_client(url, options[:namespace])
end
end
2012-02-10 01:00:40 -05:00
def self.build_client(url, namespace)
client = Redis.connect(:url => url)
if namespace
2012-02-10 01:00:40 -05:00
Redis::Namespace.new(namespace, :redis => client)
else
2012-02-10 01:00:40 -05:00
client
end
end
2012-02-10 01:00:40 -05:00
private_class_method :build_client
end
end