Class: ActiveRecord::ConnectionAdapters::ConnectionPool::Reaper

Inherits:
Object
  • Object
show all
Defined in:
lib/active_record/connection_adapters/abstract/connection_pool.rb

Overview

Every frequency seconds, the reaper will call reap and flush on pool. A reaper instantiated with a zero frequency will never reap the connection pool.

Configure the frequency by setting reaping_frequency in your database yaml file (default 60 seconds).

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(pool, frequency) ⇒ Reaper

Returns a new instance of Reaper.



290
291
292
293
# File 'lib/active_record/connection_adapters/abstract/connection_pool.rb', line 290

def initialize(pool, frequency)
  @pool      = pool
  @frequency = frequency
end

Instance Attribute Details

#frequencyObject (readonly)

Returns the value of attribute frequency.



288
289
290
# File 'lib/active_record/connection_adapters/abstract/connection_pool.rb', line 288

def frequency
  @frequency
end

#poolObject (readonly)

Returns the value of attribute pool.



288
289
290
# File 'lib/active_record/connection_adapters/abstract/connection_pool.rb', line 288

def pool
  @pool
end

Instance Method Details

#runObject



295
296
297
298
299
300
301
302
303
304
# File 'lib/active_record/connection_adapters/abstract/connection_pool.rb', line 295

def run
  return unless frequency && frequency > 0
  Thread.new(frequency, pool) { |t, p|
    loop do
      sleep t
      p.reap
      p.flush
    end
  }
end