Class: ActiveRecord::ConnectionAdapters::PostgreSQLAdapter::StatementPool

Inherits:
StatementPool show all
Defined in:
activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb

Instance Method Summary collapse

Methods included from Enumerable

#as_json, #exclude?, #index_by, #many?, #sum

Constructor Details

#initialize(connection, max) ⇒ StatementPool

Returns a new instance of StatementPool.



469
470
471
472
473
# File 'activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb', line 469

def initialize(connection, max)
  super
  @counter = 0
  @cache   = Hash.new { |h,pid| h[pid] = {} }
end

Instance Method Details

#[](key) ⇒ Object



477
# File 'activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb', line 477

def [](key);      cache[key]; end

#[]=(sql, key) ⇒ Object



484
485
486
487
488
489
490
# File 'activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb', line 484

def []=(sql, key)
  while @max <= cache.size
    dealloc(cache.shift.last)
  end
  @counter += 1
  cache[sql] = key
end

#clearObject



492
493
494
495
496
497
# File 'activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb', line 492

def clear
  cache.each_value do |stmt_key|
    dealloc stmt_key
  end
  cache.clear
end

#delete(sql_key) ⇒ Object



499
500
501
502
# File 'activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb', line 499

def delete(sql_key)
  dealloc cache[sql_key]
  cache.delete sql_key
end

#each(&block) ⇒ Object



475
# File 'activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb', line 475

def each(&block); cache.each(&block); end

#key?(key) ⇒ Boolean

Returns:

  • (Boolean)


476
# File 'activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb', line 476

def key?(key);    cache.key?(key); end

#lengthObject



478
# File 'activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb', line 478

def length;       cache.length; end

#next_keyObject



480
481
482
# File 'activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb', line 480

def next_key
  "a#{@counter + 1}"
end