Methods
#
C
D
E
K
L
N
Included Modules
Class Public methods
new(connection, max = 1000)
# File activerecord/lib/active_record/connection_adapters/statement_pool.rb, line 6
def initialize(connection, max = 1000)
  @connection = connection
  @max        = max
end
Instance Public methods
[](key)
# File activerecord/lib/active_record/connection_adapters/statement_pool.rb, line 19
def [](key)
  raise NotImplementedError
end
[]=(sql, key)
# File activerecord/lib/active_record/connection_adapters/statement_pool.rb, line 27
def []=(sql, key)
  raise NotImplementedError
end
clear()
# File activerecord/lib/active_record/connection_adapters/statement_pool.rb, line 31
def clear
  raise NotImplementedError
end
delete(key)
# File activerecord/lib/active_record/connection_adapters/statement_pool.rb, line 35
def delete(key)
  raise NotImplementedError
end
each()
# File activerecord/lib/active_record/connection_adapters/statement_pool.rb, line 11
def each
  raise NotImplementedError
end
key?(key)
# File activerecord/lib/active_record/connection_adapters/statement_pool.rb, line 15
def key?(key)
  raise NotImplementedError
end
length()
# File activerecord/lib/active_record/connection_adapters/statement_pool.rb, line 23
def length
  raise NotImplementedError
end