Class: ActiveRecord::ConnectionAdapters::MysqlAdapter::StatementPool
- Inherits:
-
StatementPool
show all
- Defined in:
- activerecord/lib/active_record/connection_adapters/mysql_adapter.rb
Instance Method Summary
collapse
Methods included from Enumerable
#as_json, #exclude?, #index_by, #many?, #sum
Constructor Details
#initialize(connection, max = 1000) ⇒ StatementPool
Returns a new instance of StatementPool.
101
102
103
104
|
# File 'activerecord/lib/active_record/connection_adapters/mysql_adapter.rb', line 101
def initialize(connection, max = 1000)
super
@cache = Hash.new { |h,pid| h[pid] = {} }
end
|
Instance Method Details
108
|
# File 'activerecord/lib/active_record/connection_adapters/mysql_adapter.rb', line 108
def [](key); cache[key]; end
|
#[]=(sql, key) ⇒ Object
112
113
114
115
116
117
|
# File 'activerecord/lib/active_record/connection_adapters/mysql_adapter.rb', line 112
def []=(sql, key)
while @max <= cache.size
cache.shift.last[:stmt].close
end
cache[sql] = key
end
|
119
120
121
122
123
124
|
# File 'activerecord/lib/active_record/connection_adapters/mysql_adapter.rb', line 119
def clear
cache.values.each do |hash|
hash[:stmt].close
end
cache.clear
end
|
#delete(key) ⇒ Object
110
|
# File 'activerecord/lib/active_record/connection_adapters/mysql_adapter.rb', line 110
def delete(key); cache.delete(key); end
|
#each(&block) ⇒ Object
106
|
# File 'activerecord/lib/active_record/connection_adapters/mysql_adapter.rb', line 106
def each(&block); cache.each(&block); end
|
#key?(key) ⇒ Boolean
107
|
# File 'activerecord/lib/active_record/connection_adapters/mysql_adapter.rb', line 107
def key?(key); cache.key?(key); end
|
109
|
# File 'activerecord/lib/active_record/connection_adapters/mysql_adapter.rb', line 109
def length; cache.length; end
|