Class: Creeper::RedisConnection
- Inherits:
-
Object
- Object
- Creeper::RedisConnection
- Defined in:
- lib/creeper/redis_connection.rb
Class Method Summary collapse
Class Method Details
.create(options = {}) ⇒ Object
7 8 9 10 11 12 13 14 15 16 |
# File 'lib/creeper/redis_connection.rb', line 7 def self.create(={}) url = [:url] || ENV['REDISTOGO_URL'] || 'redis://localhost:6379/0' driver = [:driver] || 'ruby' # need a connection for Fetcher and Retry size = [:size] || (Creeper.server? ? (Creeper.[:concurrency] + 2) : 5) ConnectionPool.new(:timeout => 1, :size => size) do build_client(url, [:namespace], driver) end end |