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

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

Instance Method Summary collapse

Constructor Details

#initialize(connection, max) ⇒ StatementPool

Returns a new instance of StatementPool.



253
254
255
256
257
# File 'lib/active_record/connection_adapters/postgresql_adapter.rb', line 253

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

Instance Method Details

#[](key) ⇒ Object



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

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

#[]=(sql, key) ⇒ Object



268
269
270
271
272
273
274
# File 'lib/active_record/connection_adapters/postgresql_adapter.rb', line 268

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

#clearObject



276
277
278
279
280
281
# File 'lib/active_record/connection_adapters/postgresql_adapter.rb', line 276

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

#delete(sql_key) ⇒ Object



283
284
285
286
# File 'lib/active_record/connection_adapters/postgresql_adapter.rb', line 283

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

#each(&block) ⇒ Object



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

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

#key?(key) ⇒ Boolean

Returns:

  • (Boolean)


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

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

#lengthObject



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

def length;       cache.length; end

#next_keyObject



264
265
266
# File 'lib/active_record/connection_adapters/postgresql_adapter.rb', line 264

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