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.
69 70 71 72 |
# File 'lib/active_record/connection_adapters/sqlite3_adapter.rb', line 69 def initialize(connection, max) super @cache = Hash.new { |h,pid| h[pid] = {} } end |
Instance Method Details
#[](key) ⇒ Object
76 |
# File 'lib/active_record/connection_adapters/sqlite3_adapter.rb', line 76 def [](key); cache[key]; end |
#[]=(sql, key) ⇒ Object
79 80 81 82 83 84 |
# File 'lib/active_record/connection_adapters/sqlite3_adapter.rb', line 79 def []=(sql, key) while @max <= cache.size dealloc(cache.shift.last[:stmt]) end cache[sql] = key end |
#clear ⇒ Object
86 87 88 89 90 91 |
# File 'lib/active_record/connection_adapters/sqlite3_adapter.rb', line 86 def clear cache.values.each do |hash| dealloc hash[:stmt] end cache.clear end |
#each(&block) ⇒ Object
74 |
# File 'lib/active_record/connection_adapters/sqlite3_adapter.rb', line 74 def each(&block); cache.each(&block); end |
#key?(key) ⇒ Boolean
75 |
# File 'lib/active_record/connection_adapters/sqlite3_adapter.rb', line 75 def key?(key); cache.key?(key); end |
#length ⇒ Object
77 |
# File 'lib/active_record/connection_adapters/sqlite3_adapter.rb', line 77 def length; cache.length; end |