Class: ActiveRecord::ConnectionAdapters::SQLite3Adapter::StatementPool
Relationships & Source Files | |
Super Chains via Extension / Inclusion / Inheritance | |
Class Chain:
|
|
Instance Chain:
|
|
Inherits: |
ActiveRecord::ConnectionAdapters::StatementPool
|
Defined in: | activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb |
Class Method Summary
- .new(connection, max) ⇒ StatementPool constructor
::ActiveRecord::ConnectionAdapters::StatementPool - Inherited
Instance Attribute Summary
::Enumerable - Included
#many? | Returns |
Instance Method Summary
::ActiveRecord::ConnectionAdapters::StatementPool - Inherited
::Enumerable - Included
Constructor Details
.new(connection, max) ⇒ StatementPool
# File 'activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb', line 78
def initialize(connection, max) super @cache = Hash.new { |h,pid| h[pid] = {} } end
Instance Method Details
#[](key)
[ GitHub ]# File 'activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb', line 85
def [](key); cache[key]; end
#[]=(sql, key)
[ GitHub ]# File 'activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb', line 88
def []=(sql, key) while @max <= cache.size dealloc(cache.shift.last[:stmt]) end cache[sql] = key end
#clear
[ GitHub ]# File 'activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb', line 95
def clear cache.each_value do |hash| dealloc hash[:stmt] end cache.clear end
#each(&block)
[ GitHub ]# File 'activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb', line 83
def each(&block); cache.each(&block); end
#key?(key) ⇒ Boolean
# File 'activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb', line 84
def key?(key); cache.key?(key); end
#length
[ GitHub ]# File 'activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb', line 86
def length; cache.length; end