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

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

Constant Summary

Constants inherited from StatementPool

StatementPool::DEFAULT_STATEMENT_LIMIT

Instance Method Summary collapse

Methods inherited from StatementPool

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

Constructor Details

#initialize(connection, max) ⇒ StatementPool

Returns a new instance of StatementPool.



183
184
185
186
187
# File 'lib/active_record/connection_adapters/postgresql_adapter.rb', line 183

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

Instance Method Details

#[]=(sql, key) ⇒ Object



193
194
195
# File 'lib/active_record/connection_adapters/postgresql_adapter.rb', line 193

def []=(sql, key)
  super.tap { @counter += 1 }
end

#next_keyObject



189
190
191
# File 'lib/active_record/connection_adapters/postgresql_adapter.rb', line 189

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