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

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

Overview

:nodoc:

Constant Summary

Constants inherited from StatementPool

StatementPool::DEFAULT_STATEMENT_LIMIT

Instance Method Summary collapse

Methods inherited from StatementPool

#[], #[]=, #clear, #delete, #each, #key?, #length, #reset

Constructor Details

#initialize(connection, max) ⇒ StatementPool

Returns a new instance of StatementPool.



298
299
300
301
302
# File 'lib/active_record/connection_adapters/postgresql_adapter.rb', line 298

def initialize(connection, max)
  super(max)
  @connection = connection
  @counter = 0
end

Instance Method Details

#next_keyObject



304
305
306
# File 'lib/active_record/connection_adapters/postgresql_adapter.rb', line 304

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