Class: Bundler::ConnectionPool
| Relationships & Source Files | |
| Namespace Children | |
| Classes: | |
| Exceptions: | |
| Extension / Inclusion / Inheritance Descendants | |
| Subclasses: | |
| Inherits: | Object | 
| Defined in: | lib/bundler/vendor/connection_pool/lib/connection_pool.rb, lib/bundler/vendor/connection_pool/lib/connection_pool/monotonic_time.rb, lib/bundler/vendor/connection_pool/lib/connection_pool/version.rb | 
Overview
Generic connection pool class for e.g. sharing a limited number of network connections among many threads. Note: Connections are lazily created.
Example usage with block (faster):
@pool = Bundler::ConnectionPool.new { Redis.new }
@pool.with do |redis|
  redis.lpop('my-list') if redis.llen('my-list') > 0
endUsing optional timeout override (for that single invocation)
@pool.with(timeout: 2.0) do |redis|
  redis.lpop('my-list') if redis.llen('my-list') > 0
endExample usage replacing an existing connection (slower):
$redis = Bundler::ConnectionPool.wrap { Redis.new }
def do_work
  $redis.lpop('my-list') if $redis.llen('my-list') > 0
endAccepts the following options:
- 
:size- number of connections to pool, defaults to 5
- 
:timeout- amount of time to wait for a connection if none currently available, defaults to 5 seconds
Constant Summary
- 
    DEFAULTS =
    
 # File 'lib/bundler/vendor/connection_pool/lib/connection_pool.rb', line 35{size: 5, timeout: 5}
- 
    GLOBAL_MONOTONIC_CLOCK =
    private
    # File 'lib/bundler/vendor/connection_pool/lib/connection_pool/monotonic_time.rb', line 53Clock that cannot be set and represents monotonic time since some unspecified starting point. class_definition.new 
- 
    VERSION =
    
 # File 'lib/bundler/vendor/connection_pool/lib/connection_pool/version.rb', line 2"2.2.2"
Class Method Summary
- 
    
      .monotonic_time  ⇒ Float 
    
    Returns the current time a tracked by the application monotonic clock. 
- .new(options = {}, &block) ⇒ ConnectionPool constructor
- .wrap(options, &block)
Instance Method Summary
- 
    
      #available  
    
    Number of pool entries available for checkout at this instant. 
- #checkin
- #checkout(options = {})
- #shutdown(&block)
- 
    
      #size  
    
    Size of this connection pool. 
- 
    
      #with(options = {})  
    
    jruby 1.7.x. 
Constructor Details
    .new(options = {}, &block)  ⇒ ConnectionPool 
  
# File 'lib/bundler/vendor/connection_pool/lib/connection_pool.rb', line 44
def initialize( = {}, &block) raise ArgumentError, 'Connection pool requires a block' unless block = DEFAULTS.merge() @size = .fetch(:size) @timeout = .fetch(:timeout) @available = TimedStack.new(@size, &block) @key = :"current-#{@available.object_id}" @key_count = :"current-#{@available.object_id}-count" end
Class Method Details
    .monotonic_time  ⇒ Float 
  
Returns the current time a tracked by the application monotonic clock.
# File 'lib/bundler/vendor/connection_pool/lib/connection_pool/monotonic_time.rb', line 62
def monotonic_time GLOBAL_MONOTONIC_CLOCK.get_time end
.wrap(options, &block)
[ GitHub ]Instance Method Details
#available
Number of pool entries available for checkout at this instant.
# File 'lib/bundler/vendor/connection_pool/lib/connection_pool.rb', line 122
def available @available.length end
#checkin
[ GitHub ]# File 'lib/bundler/vendor/connection_pool/lib/connection_pool.rb', line 97
def checkin if ::Thread.current[@key] if ::Thread.current[@key_count] == 1 @available.push(::Thread.current[@key]) ::Thread.current[@key]= nil else ::Thread.current[@key_count]-= 1 end else raise Bundler::ConnectionPool::Error, 'no connections are checked out' end nil end
#checkout(options = {})
[ GitHub ]# File 'lib/bundler/vendor/connection_pool/lib/connection_pool.rb', line 87
def checkout( = {}) if ::Thread.current[@key] ::Thread.current[@key_count]+= 1 ::Thread.current[@key] else ::Thread.current[@key_count]= 1 ::Thread.current[@key]= @available.pop([:timeout] || @timeout) end end
#shutdown(&block)
[ GitHub ]# File 'lib/bundler/vendor/connection_pool/lib/connection_pool.rb', line 112
def shutdown(&block) @available.shutdown(&block) end
#size
Size of this connection pool
# File 'lib/bundler/vendor/connection_pool/lib/connection_pool.rb', line 117
def size @size end
#with(options = {})
jruby 1.7.x
See additional method definition at line 60.