Class: ActiveRecord::ConnectionAdapters::SQLite3Adapter::StatementPool

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

Instance Method Summary collapse

Methods inherited from ActiveRecord::ConnectionAdapters::StatementPool

#delete

Methods included from Enumerable

#as_json, #exclude?, #index_by, #many?, #sum

Constructor Details

#initialize(connection, max) ⇒ StatementPool

Returns a new instance of StatementPool.



92
93
94
95
# File 'activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb', line 92

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

Instance Method Details

#[](key) ⇒ Object



99
# File 'activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb', line 99

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

#[]=(sql, key) ⇒ Object



102
103
104
105
106
107
# File 'activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb', line 102

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

#clearObject



109
110
111
112
113
114
# File 'activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb', line 109

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

#each(&block) ⇒ Object



97
# File 'activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb', line 97

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

#key?(key) ⇒ Boolean

Returns:

  • (Boolean)


98
# File 'activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb', line 98

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

#lengthObject



100
# File 'activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb', line 100

def length;       cache.length; end