Class: ActiveRecord::ConnectionAdapters::RedshiftbulkAdapter::StatementPool

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

Instance Method Summary collapse

Constructor Details

#initialize(connection, max) ⇒ StatementPool

Returns a new instance of StatementPool.



293
294
295
296
297
# File 'lib/active_record/connection_adapters/redshiftbulk_adapter.rb', line 293

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

Instance Method Details

#[](key) ⇒ Object



301
# File 'lib/active_record/connection_adapters/redshiftbulk_adapter.rb', line 301

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

#[]=(sql, key) ⇒ Object



308
309
310
311
312
313
314
# File 'lib/active_record/connection_adapters/redshiftbulk_adapter.rb', line 308

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

#clearObject



316
317
318
319
320
321
# File 'lib/active_record/connection_adapters/redshiftbulk_adapter.rb', line 316

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

#delete(sql_key) ⇒ Object



323
324
325
326
# File 'lib/active_record/connection_adapters/redshiftbulk_adapter.rb', line 323

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

#each(&block) ⇒ Object



299
# File 'lib/active_record/connection_adapters/redshiftbulk_adapter.rb', line 299

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

#key?(key) ⇒ Boolean

Returns:

  • (Boolean)


300
# File 'lib/active_record/connection_adapters/redshiftbulk_adapter.rb', line 300

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

#lengthObject



302
# File 'lib/active_record/connection_adapters/redshiftbulk_adapter.rb', line 302

def length;       cache.length; end

#next_keyObject



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

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