Class: ActiveRecord::ConnectionAdapters::SQLiteAdapter::StatementPool

Inherits:
ActiveRecord::ConnectionAdapters::StatementPool show all
Defined in:
lib/active_record/connection_adapters/sqlite_adapter.rb

Instance Method Summary collapse

Methods inherited from ActiveRecord::ConnectionAdapters::StatementPool

#delete

Constructor Details

#initialize(connection, max) ⇒ StatementPool

Returns a new instance of StatementPool.



53
54
55
56
# File 'lib/active_record/connection_adapters/sqlite_adapter.rb', line 53

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

Instance Method Details

#[](key) ⇒ Object



60
# File 'lib/active_record/connection_adapters/sqlite_adapter.rb', line 60

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

#[]=(sql, key) ⇒ Object



63
64
65
66
67
68
# File 'lib/active_record/connection_adapters/sqlite_adapter.rb', line 63

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

#clearObject



70
71
72
73
74
75
# File 'lib/active_record/connection_adapters/sqlite_adapter.rb', line 70

def clear
  cache.values.each do |hash|
    dealloc hash[:stmt]
  end
  cache.clear
end

#each(&block) ⇒ Object



58
# File 'lib/active_record/connection_adapters/sqlite_adapter.rb', line 58

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

#key?(key) ⇒ Boolean

Returns:

  • (Boolean)


59
# File 'lib/active_record/connection_adapters/sqlite_adapter.rb', line 59

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

#lengthObject



61
# File 'lib/active_record/connection_adapters/sqlite_adapter.rb', line 61

def length;       cache.length; end