Class: ActiveRecord::ConnectionAdapters::MysqlAdapter::StatementPool
- Inherits:
-
ConnectionAdapters::StatementPool
- Object
- ConnectionAdapters::StatementPool
- ActiveRecord::ConnectionAdapters::MysqlAdapter::StatementPool
- Defined in:
- lib/active_record/connection_adapters/mysql_adapter.rb
Instance Method Summary collapse
- #[](key) ⇒ Object
- #[]=(sql, key) ⇒ Object
- #clear ⇒ Object
- #delete(key) ⇒ Object
- #each(&block) ⇒ Object
-
#initialize(connection, max = 1000) ⇒ StatementPool
constructor
A new instance of StatementPool.
- #key?(key) ⇒ Boolean
- #length ⇒ Object
Constructor Details
#initialize(connection, max = 1000) ⇒ StatementPool
Returns a new instance of StatementPool.
94 95 96 97 |
# File 'lib/active_record/connection_adapters/mysql_adapter.rb', line 94 def initialize(connection, max = 1000) super @cache = Hash.new { |h,pid| h[pid] = {} } end |
Instance Method Details
#[](key) ⇒ Object
101 |
# File 'lib/active_record/connection_adapters/mysql_adapter.rb', line 101 def [](key); cache[key]; end |
#[]=(sql, key) ⇒ Object
105 106 107 108 109 110 |
# File 'lib/active_record/connection_adapters/mysql_adapter.rb', line 105 def []=(sql, key) while @max <= cache.size cache.shift.last[:stmt].close end cache[sql] = key end |
#clear ⇒ Object
112 113 114 115 116 117 |
# File 'lib/active_record/connection_adapters/mysql_adapter.rb', line 112 def clear cache.values.each do |hash| hash[:stmt].close end cache.clear end |
#delete(key) ⇒ Object
103 |
# File 'lib/active_record/connection_adapters/mysql_adapter.rb', line 103 def delete(key); cache.delete(key); end |
#each(&block) ⇒ Object
99 |
# File 'lib/active_record/connection_adapters/mysql_adapter.rb', line 99 def each(&block); cache.each(&block); end |
#key?(key) ⇒ Boolean
100 |
# File 'lib/active_record/connection_adapters/mysql_adapter.rb', line 100 def key?(key); cache.key?(key); end |
#length ⇒ Object
102 |
# File 'lib/active_record/connection_adapters/mysql_adapter.rb', line 102 def length; cache.length; end |