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

Constructor Details

#initialize(connection, max) ⇒ StatementPool

Returns a new instance of StatementPool.



178
179
180
181
182
# File 'lib/active_record/connection_adapters/postgresql_adapter.rb', line 178

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

Instance Method Details

#[]=(sql, key) ⇒ Object



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

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

#next_keyObject



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

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