Class: ActiveRecord::ConnectionAdapters::SQLite3Adapter::StatementPool
- Inherits:
-
ActiveRecord::ConnectionAdapters::StatementPool
- Object
- ActiveRecord::ConnectionAdapters::StatementPool
- ActiveRecord::ConnectionAdapters::SQLite3Adapter::StatementPool
- Defined in:
- lib/active_record/connection_adapters/sqlite3_adapter.rb
Instance Method Summary collapse
- #[](key) ⇒ Object
- #[]=(sql, key) ⇒ Object
- #clear ⇒ Object
- #each(&block) ⇒ Object
-
#initialize(connection, max) ⇒ StatementPool
constructor
A new instance of StatementPool.
- #key?(key) ⇒ Boolean
- #length ⇒ Object
Methods inherited from ActiveRecord::ConnectionAdapters::StatementPool
Constructor Details
#initialize(connection, max) ⇒ StatementPool
Returns a new instance of StatementPool.
92 93 94 95 |
# File '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 '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 '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 |
#clear ⇒ Object
109 110 111 112 113 114 |
# File '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 'lib/active_record/connection_adapters/sqlite3_adapter.rb', line 97 def each(&block); cache.each(&block); end |
#key?(key) ⇒ Boolean
98 |
# File 'lib/active_record/connection_adapters/sqlite3_adapter.rb', line 98 def key?(key); cache.key?(key); end |
#length ⇒ Object
100 |
# File 'lib/active_record/connection_adapters/sqlite3_adapter.rb', line 100 def length; cache.length; end |