Class: Roundhouse::RedisConnection
- Inherits:
-
Object
- Object
- Roundhouse::RedisConnection
- Defined in:
- lib/roundhouse/redis_connection.rb
Class Method Summary collapse
Class Method Details
.create(options = {}) ⇒ Object
9 10 11 12 13 14 15 16 17 18 19 20 21 |
# File 'lib/roundhouse/redis_connection.rb', line 9 def create(={}) [:url] ||= determine_redis_provider # need a connection for Fetcher and Retry size = [:size] || (Roundhouse.server? ? (Roundhouse.[:concurrency] + 2) : 5) pool_timeout = [:pool_timeout] || 1 log_info() ConnectionPool.new(:timeout => pool_timeout, :size => size) do build_client() end end |