# File lib/active_record/connection_adapters/mysql_adapter.rb, line 102 def [](key); cache[key]; end
# File lib/active_record/connection_adapters/mysql_adapter.rb, line 106 def []=(sql, key) while @max <= cache.size cache.shift.last[:stmt].close end cache[sql] = key end
# File lib/active_record/connection_adapters/mysql_adapter.rb, line 113 def clear cache.values.each do |hash| hash[:stmt].close end cache.clear end
# File lib/active_record/connection_adapters/mysql_adapter.rb, line 104 def delete(key); cache.delete(key); end
# File lib/active_record/connection_adapters/mysql_adapter.rb, line 100 def each(&block); cache.each(&block); end
Generated with the Darkfish Rdoc Generator 2.